[C#] 纯文本查看 复制代码 FileStream fs = new FileStream(FilePath, FileMode.Open, FileAccess.Read);
StreamReader sr = new StreamReader(FilePath, System.Text.Encoding.Default);
String[] rows = File.ReadAllLines(FilePath);
//String strReadLine = rows[0];
fs.Close();
sr.Close();
你写的这是什么啊,
你的Rows是从这里取的 [C#] 纯文本查看 复制代码 String[] rows = File.ReadAllLines(FilePath);
就没有使用 [C#] 纯文本查看 复制代码 StreamReader sr = new StreamReader(FilePath, System.Text.Encoding.Default);
当然不行了。
[C#] 纯文本查看 复制代码 String[] rows = File.ReadAllLines(FilePath,System.Text.Encoding.ASCII);
直接这一行就行了,
[C#] 纯文本查看 复制代码 FileStream fs = new FileStream(FilePath, FileMode.Open, FileAccess.Read);
StreamReader sr = new StreamReader(FilePath, System.Text.Encoding.Default); 这两个根本 就没有用到
|