本文介绍了无法使用流阅读器阅读日语字符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在打开流时使用了以下语句。
StreamReader reader = new StreamReader(fileListPath,Encoding.GetEncoding(shift_jis));
仍然无法读取日语字符。
我的窗口活动代码页是437
I used following statement while opening stream.
StreamReader reader = new StreamReader(fileListPath,Encoding.GetEncoding("shift_jis"));
still could not read japanese character.
My window active code page is 437
推荐答案
StreamReader reader = new StreamReader(fileListPath, Encoding.UTF8);
这篇关于无法使用流阅读器阅读日语字符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!