| | |
xml to text using vb.net
Please support our VB.NET advertiser: Programming Forums - DaniWeb Sister Site
Thread Solved |
•
•
Join Date: Nov 2008
Posts: 6
Reputation:
Solved Threads: 0
Hi All
I am trying to convert xml file to a text file. But my program creates an empty text file and does not copy any text from the xml file. Please help
Thanks
My code:
Dim Doc As New XmlDocument
Dim NodeList As XmlNodeList
Doc.Load("C:\Temp\MyXml.xml")
NodeList = Doc.SelectNodes("/response/TAG")
Dim sw As New StreamWriter("C:\Temp\MyXmlContents.txt", False)
For Each Node As XmlNode In NodeList
For i As Integer = 0 To Node.ChildNodes.Count - 1
With Node.ChildNodes.Item(i)
sw.WriteLine(.Name & ": " & .InnerText)
End With
Next
Next
sw.Close()
I am trying to convert xml file to a text file. But my program creates an empty text file and does not copy any text from the xml file. Please help
Thanks
My code:
Dim Doc As New XmlDocument
Dim NodeList As XmlNodeList
Doc.Load("C:\Temp\MyXml.xml")
NodeList = Doc.SelectNodes("/response/TAG")
Dim sw As New StreamWriter("C:\Temp\MyXmlContents.txt", False)
For Each Node As XmlNode In NodeList
For i As Integer = 0 To Node.ChildNodes.Count - 1
With Node.ChildNodes.Item(i)
sw.WriteLine(.Name & ": " & .InnerText)
End With
Next
Next
sw.Close()
![]() |
Similar Threads
- Simple ASP.Net Login Page using C# (C#)
- Updated : Simple ASP.Net Login Page (ASP.NET)
- Forms Authorization/ Authentication using asp .net and vb .net (ASP.NET)
- XML data to database (RSS, Web Services and SOAP)
- What exactly is xml? (RSS, Web Services and SOAP)
- Simple ASP.Net Login Page (Using VB.Net) (ASP.NET)
- The Move.....Visual Basic 6, Visual Basic .NET ? (VB.NET)
Other Threads in the VB.NET Forum
- Previous Thread: printing the jpg file using vb.net
- Next Thread: Sorting 3 numbers ascending and descending
Views: 733 | Replies: 1
| Thread Tools | Search this Thread |
Tag cloud for VB.NET
.net .net2008 2008 access add advanced application array basic beginner browser button buttons center class click client code combo convert cpu cuesent data database datagrid datagridview datetimepicker design designer dissertation dissertations dissertationtopic eclipse employees excel exists forms function html images lib listview map mobile module msaccess mysql net number open page pan pdf picturebox picturebox2 port position print printing printpreview problem refresh regex reuse richtextbox right-to-left save search serial settings socket sorting sqldatbase sqlserver storedprocedure studio textbox timer timespan transparency txttoxmlconverter usercontol vb vb.net vb2008 vba vbnet vista visual visualbasic visualbasic.net visualstudio.net visualstudio2008 web webbrowser winsock wpf wrapingcode xml year





