参考自:http://zhidao.baidu.com/question/87467507.html //定义一个变量用来存读到的东西 string text = ""; //用一个读出流去读里面的数据 using (StreamReader reader = new StreamReader(@"C:\db.txt", Encoding.GetEncoding("gb2312"))) { //读一行 string line = reader.R
' 对XML文件按照文本文件的方式进行遍历 Private Sub checkFile_establishEntity(strFile As String) Dim reader AsTextReader = File.OpenText(strFile) ' 打开文件 Dim ii AsInteger = 0 ' 行号 Dim line AsString = reader.ReadLine() ' 读第一行 While line <> "" ii