C # Parsing XML file code instance sharing

Source: Internet
Author: User
Tags xml reader
C # Parsing XML file code instance sharing

 XmlNodeReader reader = null;                try {XmlDocument xd = new XmlDocument (); Xd.                Load (filename); reader = new XmlNodeReader (XD);                Create a new XML reader string nodeType = null; while (reader. Read ()) {switch (reader). NodeType) {Case xmlnodetype.element://determines if the read is a node n Odetype = reader.                            Name;                        Break                                Case XMLNODETYPE.TEXT://Determines if the read is a node value of switch (nodeType) { Case root:rootvalue = reader.                                    Value;                                Break                            Default:break;                        } break; Default:break; }}} catch (Exception e) {System.Console.WriteLine ("Read            XML File Error: "+ e.message + e.stacktrace); } finally {if (reader! = null) {reader.                Close (); }            }...................... Finally, don't forget to close the reader.

This method can actually be used to reduce the number of command line arguments, now only need to add a file name. But to write the parameters in the file

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.