[求助]关于读文件乱码的问题
string path=textBox1.Text;
if(File.Exists(path))
{
StreamReader sr=new StreamReader(path,Encoding.Default);
string str=sr.ReadLine();
while(str!=null)
{
textBox2.Text+=str;
str=sr.ReadLine();
}
}
else
{
MessageBox.Show("没有此文件");
}
就这段代码,读中文的就乱码,读英文字母就行,请各位高手指点一下,还有一个问题就是我.txt文档里的内容是换行的,为什么我读出来是在一行里.