我在下面创建了一个xml !!!
我正在从文件夹中读取文件我收集了所有文件的详细信息,我需要准备一个xml文件......
任何人都可以帮我创建xml .. !!请
Xml = New XmlDocument()
Xml.AppendChild(Xml.CreateElement("ROOT"))
Dim xmlroot As XmlElement = Xml.DocumentElement
Dim InstXml As XmlElement = Xml.CreateElement("ERRORLOG")
SwiftFileName = Errfile.ToString()
InstXml.SetAttribute("SWIFT_FILENAME", SwiftFileName)
Status = "SUCCESS"
InstXml.SetAttribute("RESULT", Status)
Errortext = "NULL"
InstXml.SetAttribute("ERRORTEXT", Errortext)
xmlroot.AppendChild(InstXml)
答案 0 :(得分:0)
一种方法是使用xmlserializer。
创建一个可串行的类:
<System.Serializable()> _
Public Class ClassToXML
Public ErrorLog As String
Public SwithFileName As String
Status As String
End Class
并使用serialize保存并使用反序列化将其读回 见:msdn arctivle
使用属性,您可以更改字段和属性的序列化。
祝你好运