Back to project page Common-Library.
The source code is released under:
Apache License
If you think the Android project Common-Library listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.morgan.library.snippet; //from w w w . j a v a 2 s . co m /** * @author Morgan.ji * @date 2014?3?23? * */ public class XMLAnalyze { public static void main(String[] args) { String context = "<?xml version=\"1.0\" encoding=\"UTF-8\"?> <employees> <employee> <name>ddviplinux</name> <sex>m</sex> <age>30</age> </employee> </employees>"; } }