我正在使用带有 http 助手的 c# 并使用流阅读器来阅读文本。但是当我上传包含此文本的文本文件时
“看看我在@eBay 上找到了什么!Willy Lee LifeLike Chatting Butler Prop Motion Sen”
该空间由“�”替换并在代码中使用。
阅读文本的代码是:-
List<string> list = new List<string>();
StreamReader reader = new StreamReader(filepath);
string text = "";
while ((text = reader.ReadLine()) != null)
{
if (!string.IsNullOrEmpty(text))
{
list.Add(text);
}
}
reader.Close();
return list;
列表包含此数据-“看……到底……什么……我在……@……eBay!……Willy……Lee……LifeLike……聊天……Butler……Prop……Motion……Sen”