• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Which XML API do you think best???

 
Ranch Hand
Posts: 84
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
IBM, Sun or something else???
 
Ranch Hand
Posts: 18944
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Javan,
Most developpers will use JAXP (abstraction layer on top of SAX and DOM) that has been developped by Sun.
Alternatively, JDOM is a open source library that a number of developpers favors as it keeps things simple.
For transforming XML files (using XSLT), you should use TRAX (javax.xml.transform) that is an open API from Sun.
Once you've made up your mind, you'll need to choose a parser (for instance Xerces) and eventually a XLST processor (Xalan for instance) if you intend to use XLST.
If you are using the 1.4 JDK, you don't even need to download anything as it comes with XML APIs (JAXP + SAX + DOM + TRAX).
May Google help you find all needed resources
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think JAXP(Java API for XML Parsing)
 
reply
    Bookmark Topic Watch Topic
  • New Topic