InterviewSolution
Saved Bookmarks
| 1. |
What are the advantages of JDOM parser? |
|
Answer» When you parse an XML document with a JDOM parser, you get the flexibility to get back a tree structure that contains all of the elements of your document without impacting the memory footprint of the application. The JDOM provides a variety of utility functions you can use to examine the contents and structure of the document in case document is well structured and its structure is known. JDOM gives java developers flexibility and easy maintainablity of xml parsing code. It is light weight and quick API. |
|