本文介绍了如何从ANSI转换为XML文件的UTF-8.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

朋友们,

在我的项目中,大约有200个ANSI编码的XML文件.我想一次在C Sharp(ADO.net)中以UTF-8格式转换所有这些文件.

如何为该过程制作工具?


提前Thnx
Sumit Shukla

Hi frenzs,

In my project there are about 200 XML file in ANSI encoding. I want to Convert these all files at a time in UTF-8 in a C sharp (ADO.net).

How to make a tool for this process?


Thnx in Advance
Sumit Shukla

推荐答案

  1. 使用System.Xml.XmlDocument类.它实现了DOM接口;如果文档太大,则这种方法最简单,也足够好.
    请参见 [ ^ ].
  2. 使用类System.Xml.XmlTextWriterSystem.Xml.XmlTextReader;这是最快的读取方法,尤其是您需要跳过一些数据.
    请参见 http://msdn.microsoft.com/en-us/library/system.xml.xmlwriter.aspx [ ^ ], [ ^ ].
  3. 使用类System.Xml.Linq.XDocument;这是类似于XmlDocument的最适当的方法,它支持LINQ to XML编程.
    请参见 [ ^ ],http://msdn.microsoft.com/en-us/library/bb387063.aspx [ ^ ].
  1. Use System.Xml.XmlDocument class. It implements DOM interface; this way is the easiest and good enough if the size if the document is not too big.
    See http://msdn.microsoft.com/en-us/library/system.xml.xmldocument.aspx[^].
  2. Use the classes System.Xml.XmlTextWriter and System.Xml.XmlTextReader; this is the fastest way of reading, especially is you need to skip some data.
    See http://msdn.microsoft.com/en-us/library/system.xml.xmlwriter.aspx[^], http://msdn.microsoft.com/en-us/library/system.xml.xmlreader.aspx[^].
  3. Use the class System.Xml.Linq.XDocument; this is the most adequate way similar to that of XmlDocument, supporting LINQ to XML Programming.
    See http://msdn.microsoft.com/en-us/library/system.xml.xmldocument.aspx[^], http://msdn.microsoft.com/en-us/library/bb387063.aspx[^].



—SA



—SA


这篇关于如何从ANSI转换为XML文件的UTF-8.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 18:16
查看更多