473,396 Members | 1,893 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Which do I use, JAX, DOM, JDOM?

hello,

I am having to read an XML document and grab some elements and attributes
and then convert that to anther XML document.

Which should I use? JAX, DOM, JDOM?

I don't really understand the difference and when to use the above.

Thanks so much.
Jul 20 '05 #1
2 1535
hi,
I am having to read an XML document and grab some elements and attributes
and then convert that to anther XML document.

Which should I use? JAX, DOM, JDOM?

I don't really understand the difference and when to use the above.


DOM: language-independent API for accessing XML

JAXP: API in Java for DOM, SAX, XSLT; part of the J2SE-specification

JDOM: API in Java with some more features than DOM; not part of J2SE and
only supported by some parsers

If you just want to transform one XML-document into another you should
use XSLT ( http://w3.org/TR/xslt ). If you want to embed this process
into your own Java-application, you should use JAXP for the Java-part.

regards
frank
Jul 20 '05 #2


john smith wrote:
I am having to read an XML document and grab some elements and attributes
and then convert that to anther XML document.

Which should I use? JAX, DOM, JDOM?

I don't really understand the difference and when to use the above.


DOM usually means the W3C DOM specification which is meant to be
language independent by using some IDL (interface description language)
to define a tree based API for manipulating XML (and HTML) documents.
The W3C DOM specification then goes on to define two language bindings,
one for Java, one for ECMAScript. As the specification should be
implementable on top of existing implementations and as the API has to
work with scripting languages with loose typing as well as with
languages like Java with strong typing the Java binding the W3C suggests
for the DOM doesn't define any classes but only interfaces to be
implemented. Where overloading in Java would be possible it is not done
as overloading in ECMAScript is not possible and the API is meant to be
consistent in different languages.
As a result of this many pure or main Java programmers dislike the W3C
DOM and have implemented Java specific and Java natural DOM APIs, one of
which is JDOM. But there are others like XOM.
JAXP is Sun's term for the different XML related Java APIs in the Sun
Java development kit/JDK, it is mainly an abstraction layer (or even
several ones) to allow you to use different parsers or DOM
implementations or XSLT implementations or XPath implementations that
are around under a common way to create parsers.

What you should or want to use depends on many criteria, Sun Java 1.4
and Sun Java 1.5 have W3C DOM support thus if you want to only rely on
the classes installed by the Sun JDK/JRE then you do not have JDOM for
instance or XOM. You would need an additional download for that and
anyone using your software too.

--

Martin Honnen
http://JavaScript.FAQTs.com/
Jul 20 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Praveen Chhangani | last post by:
Folks, I was wondering if it were possible to convert an org.jdom.doc to an org.w3c.doc document. Essentially what I have is an already parsed document using jdom and I would like to use the...
3
by: Michael | last post by:
hello, I'm a java programmer, and my program will require to parse XML documents and extract data from it, then built a new XML document. Should JDOM or Xerces be the best for me? Please help....
3
by: Bernd Oninger | last post by:
When I run the successfully compiled java source shown at the end I got a runtime error: Exception in thread "main" java.lang.NoClassDefFoundError: org/jdom/Content Where is the missing class ?...
0
by: idorjee | last post by:
Hi Can anyone please help me why my java program says the following when I try to build it in NetBeans: Compiling 1 source file to /Users/Desktop/Jproject/jdom/build/classes...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.