zoukankan      html  css  js  c++  java
  • ParseForm.cs

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    using System.IO;
    using System.Text.RegularExpressions;
    
    using Packet;
    
    namespace TSProducer
    {
        public partial class ParseForm : WeifenLuo.WinFormsUI.Docking.DockContent
        {
            private string gFilePath;
            public ParseForm()
            {
                InitializeComponent();
            }
    
            public void setGFilePath(string filePath)
            {
                gFilePath = filePath;
            }
    
            public void parseCdt(string filePath)
            {
                //setGFilePath(filePath);
                //FileStream fs = new FileStream(gFilePath, FileMode.Open, FileAccess.Read);
                //BinaryReader br = new BinaryReader(fs);
                //if (br.PeekChar() != -1)
                //{
                //    string str = Convert.ToString(br.ReadString());
                //    str = str.Replace(CDT.CDTTableStr, "");
                //    string title = "------Parse started: Table : CDT------\r\n";
                //    string parseFile = "Parse -> " + gFilePath + "\r\n";
                //    string result = "[Content]: " + str + "\r\n";
                //    textBox1.Text += title  + parseFile + result;
    
                //}
                //br.Close();
                //fs.Close();
            }
        }
    
    
    }
    
  • 相关阅读:
    c++ ::和:
    c++ extern
    c++ cpp和hpp
    c++ include
    caffe调试
    caffe blob理解
    poj3126
    FFmpeg滤镜使用指南
    Android之Activity之间传递对象
    Server Tomcat v8.0 Server at localhost failed to start.
  • 原文地址:https://www.cnblogs.com/jingmoxukong/p/2120869.html
Copyright © 2011-2022 走看看