• 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
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

What XML tools are included in 1.3?

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm just starting to get into XML processing with Java. Everything I read about SAX and DOM processing in Java seems to require external packages. Does SDK 1.3 or 1.4 have any 'built-in' SAX or DOM packages, or will I have to make these external packages (org.xml.sax, org.w3c.dom, javax.xml.parsers) pre-reqs for any XML processing?
Or am I really, really confused?
 
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
1.4 has all you need for XML parsing (SAX or DOM) built in -- both the necessary interfaces and an implementation (Apache Crimson). For 1.3, you need to download a parser implementation separately (and the interfaces, but those are distributed with the parser anyway).
 
This cake looks terrible, but it tastes great! Now take a bite out of this tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic