本文介绍了为什么当我用流读取器读取德语.txt文件时,德语字母会丢失?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
也许制作字符串Unicode。
我在CodeProject上找到的谷歌翻译程序的类似问题...
我尝试过:
Maybe making the string Unicode.
Similar problem with a Google Translator program I found here on CodeProject...
What I have tried:
using (StreamReader SR = new StreamReader(@"C:\Users\john\Dropbox\germanWords.txt"))
{
while (!string.IsNullOrWhiteSpace(s=SR.ReadLine()))
{
try
{
l.Add(new ListOfWordsApp.FormMain.wordAndMeaning(
s.Substring(0, s.IndexOf("-")),
s.Substring(s.IndexOf("-") + 1)));
}
catch
{
MessageBox.Show(s);
}
}
}
推荐答案
这篇关于为什么当我用流读取器读取德语.txt文件时,德语字母会丢失?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!