您好我在网上查了这个例外, 我没有找到解决方案所以我决定问一下。 在控制台应用程序中,我需要在文件夹中搜索一定数量的xml文件。此类文件以ANSI编码。 应用程序的作用是获取文件并将其转换为utf-8编码。 但随着周期的到来,抓住了这个例外。 给定编码中的字符无效。第1行,第2757位 我从第三个获得xml alguna想法? muchas gracias。 这是我的代码
我在3 xmls of 100
中得到此异常 int Count = 0;
string sNombre = "";
string targetPath = @"C:\SomePath\";
string logError = "log_xml_Error.log";
if (File.Exists(@"log_xml_Error.log"))
{
File.Delete(@"log_xml_Error.log");
}
Console.WriteLine("press enter");
Console.ReadLine();
string[] xmls = Directory.GetFiles(targetPath, "*.xml", SearchOption.AllDirectories);
foreach (var sFile in xmls)
{
try
{
Count++;
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(sFile);
byte[] sXmlByte = Encoding.UTF8.GetBytes(xmlDoc.OuterXml);
sName = Path.GetFileName(sFile);
string sCompletePathXML = @"C:\SomePath\" + sName;
if (!File.Exists(sCompletePathXML))
{
File.WriteAllText(sCompletePathXML, System.Text.UTF8Encoding.UTF8.GetString(sXmlByte), System.Text.UTF8Encoding.UTF8);
}
Console.WriteLine(Count);
}
catch (Exception ex)
{
using (StreamWriter sw = File.AppendText(logError))
{
sw.WriteLine(" Error: " + ex.Message + "XML :" + sName);
}
}
}
Console.WriteLine("process complete");
Console.ReadLine();
答案 0 :(得分:0)
应用程序的作用是获取文件并将其转换为utf-8编码
我会很喜欢
var xdoc = XDocument.Parse(File.ReadAllText(filename,Encoding.ASCII));
File.WriteAllText(filename, xdoc.ToString(), Encoding.UTF8);