本文介绍了如何从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
推荐答案
- 使用
System.Xml.XmlDocument
类.它实现了DOM接口;如果文档太大,则这种方法最简单,也足够好.
请参见 [ ^ ]. - 使用类
System.Xml.XmlTextWriter
和System.Xml.XmlTextReader
;这是最快的读取方法,尤其是您需要跳过一些数据.
请参见 http://msdn.microsoft.com/en-us/library/system.xml.xmlwriter.aspx [ ^ ], [ ^ ]. - 使用类
System.Xml.Linq.XDocument
;这是类似于XmlDocument
的最适当的方法,它支持LINQ to XML编程.
请参见 [ ^ ],http://msdn.microsoft.com/en-us/library/bb387063.aspx [ ^ ].
- 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[^]. - Use the classes
System.Xml.XmlTextWriter
andSystem.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[^]. - Use the class
System.Xml.Linq.XDocument
; this is the most adequate way similar to that ofXmlDocument
, 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[^].
这篇关于如何从ANSI转换为XML文件的UTF-8.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!