Click here to Skip to main content
15,886,199 members
Articles / Web Development / ASP.NET

Parsing/Loading/Searching XML Document of Size ~ 1GB

Rate me:
Please Sign up or sign in to vote.
3.45/5 (11 votes)
8 Aug 2008CPOL2 min read 57.6K   1.4K   43  
The Console application which provides an efficient way to parse large XML files using xmlReader and DOM object in hand
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
    <!-- it is the path of xml file which is to be parse-->
    <add key="XmlPath1" value="C:\FilesForXml\catalog.rdf"/>
    <!-- path of the out put text file -->
    <add key="FoundByIndex" value="C:\FilesForXml\booksFoundByIndex.txt"/>
    <add key="FoundByTitle" value="C:\FilesForXml\booksFoundByTitle.txt"/>
  </appSettings>
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
Graduated in Electronics and Telecommunication.
Have been working in software company from last 30 months.
Technology/Languages intrested in
1. ASP.NET 2.0
2. AJAX 1.0
3. C# 3.0
4. JavaScript

Comments and Discussions