|
[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Need help on JAXB!
>From: Srivathsan C [mailto:bc_srivathsan@y...] >Sent: Wed 8/27/2003 3:38 AM >To: xml-dev@l... >Subject: Need help on JAXB! > > Hi All, > > What is the advantages and disadvantages of using JAXB over > SAX/DOM parser? > Any sample for the same will be very useful If your program is centered around XML, and you want to parse it and process it as XML, SAX and DOM are good APIs. SAX is event oriented, lean and faster. SAX is very fast, and if you are simply extracting or inserting data into documents, it is generally the tool of choice. DOM is tree oriented, navigational, moderately large, and strongly reflective of web-browser programming. Both are very popular APIs. If what you want to do is navigate and manipulate trees, DOM is your choice - but it can be very memory intensive. JAXB does two-way mappings between XML documents and Java objects. You write a DTD, then the JAXB compiler creates a set of Java classes that contain the code used to parse XML documents that use this DTD. JAXB does not do tree manipulation, it places the data into Java objects, where it is accessed using conventional Java techniques. This makes it simpler to use for data-oriented applications, but it is not much good for document-oriented applications. This is all discussed with concrete code examples here: http://java.sun.com/xml/webservices.pdf Jonathan
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|
|||||||||

Cart








