| | |
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: 730 | Replies: 1
| Thread Tools | Search this Thread |
Tag cloud for VB.NET
.net .net2008 2005 2008 access account application array arrays basic browser button buttons center check checkbox code convert crystalreport cuesent data database datagrid datagridview date datetimepicker design designer dissertation dissertations dissertationtopic dropdownlist eclipse excel fade filter ftp generatetags gridview images inline input insert installer intel internet lib listview mobile monitor net objects panel passingparameters pdf picturebox port position print printing problem read remove save searchbox searchvb.net select serial settings shutdown soap sorting studio survey table tcp temperature textbox time timer timespan transparency trim update user validation vb vb.net vb.netformclosing()eventpictureboxmessagebox vb2008 vbnet visual visualbasic visualbasic.net visualstudio2008 web webbrowser winforms wpf year





