Jaxb (Java architecture for XML binding)
Java's support for XML
Http://www.oracle.com/technetwork/articles/javase/index-140168.html
Xml dom parser
We already know the concept of xml dom. parser is used for XML and Dom conversion.
Http://blog.csdn.net/OnlyQi/article/details/7912383
Sax -- Simple API for XML
The biggest difference between Sax and Dom is that sax reads XML in the form of a stream instead of loading the DOM into the memory. Therefore, Sax is particularly suitable for reading large XML files.
In the sax approach, the parser starts at the beginning of the document and passes each piece of the document to the application in the sequence it finds it. nothing is saved in memory. the application can take action on the data as it gets it from the parser,
But it can't do any in-memory manipulation of the data. For example, it can't update the data in memory and return the updated data to the XML file.
Http://blog.csdn.net/onlyqi/article/details/7836872
Stax --Streaming API for XML(Stax)
Stax is a simplified version of sax, which is easier to use.
Http://blog.csdn.net/onlyqi/article/details/7836864
SAAJ--SOAP with attachments API for Java
Java-specific APIs for SOAP XML
Http://docs.oracle.com/javaee/5/tutorial/doc/bnbhg.html