我有一个包含非英语字符的文件,并使用非英语代码页以 ANSI 编码保存。如何在 C# 中读取该文件并正确查看文件内容?
不工作
StreamReader sr=new StreamReader(@"C:\APPLICATIONS.xml",Encoding.ASCII);
var ags = sr.ReadToEnd();
sr=new StreamReader(@"C:\APPLICATIONS.xml",Encoding.UTF8);
ags = sr.ReadToEnd();
sr=new StreamReader(@"C:\APPLICATIONS.xml",Encoding.Unicode);
ags = sr.ReadToEnd();
可以工作,但我需要提前知道代码页是什么,这是不可能的。
sr=new StreamReader(@"C:\APPLICATIONS.xml",Encoding.GetEncoding(1252));
ags = sr.ReadToEnd();
var text = File.ReadAllText(file, Encoding.GetEncoding(codePage));
代码页列表:https://learn.microsoft.com/en-us/windows/win32/intl/code-page-identifiers?redirectedfrom=MSDN
当您的文本文件使用高 ANSI 编码时,您会得到问号菱形字符 - 这意味着它使用 127 到 255 之间的字符。这些字符具有第八个(即最重要的)位集。当 ASP.NET 读取文本文件时,它采用 UTF-8 编码,并且最高有效位具有特殊含义。
您必须通过告诉 ASP.NET 代码页为 1252 来强制 ASP.NET 将文本文件解释为高 ANSI 编码:
String textFilePhysicalPath = System.Web.HttpContext.Current.Server.MapPath("~/textfiles/MyInputFile.txt");
String contents = File.ReadAllText(textFilePhysicalPath, System.Text.Encoding.GetEncoding(1252));
lblContents.Text = contents.Replace("\n", "<br />"); // change linebreaks to HTML
如果我没记错的话,XmlDocument.Load(string) 方法始终假定 UTF-8,无论 XML 编码如何。 您必须使用正确的编码创建一个 StreamReader 并将其用作参数。
xmlDoc.Load(new StreamReader(
File.Open("file.xml"),
Encoding.GetEncoding("iso-8859-15")));
我刚刚偶然发现了 Microsoft 的 KB308061。有一段很有趣: 在 XML 文档的 XML 声明部分指定编码声明。例如,以下声明表示文档采用 UTF-16 Unicode 编码格式:
<?xml version="1.0" encoding="UTF-16"?>
请注意,此声明仅指定 XML 文档的编码格式,并不修改或控制数据的实际编码格式。
链接来源:
在我的 c++/clr (WinForms) 案例中,这种方法取得了成功:
String^ str2 = File::ReadAllText("MyText_cyrillic.txt",System::Text::Encoding::GetEncoding(1251));
textBox1->Text = str2;
using (StreamReader file = new StreamReader(filePath, Encoding.GetEncoding("ISO-8859-1")))
{
JsonSerializer serializer = new JsonSerializer();
IList<Type> result= (IList<Type>)serializer.Deserialize(file, typeof(IList<Type>));
}
ANSI 代码:ISO-8859-1
using (StreamWriter writer = new StreamWriter(File.Open(@"E:\Sample.txt", FileMode.Append), Encoding.GetEncoding(1250))) ////File.Create(path)
{
writer.Write("Sample Text");
}