Java API for XML Processing (JAXP)

View: [ 2009 | 2008 | 2007 | 2006 | 2005 | 2004 | 2003 ]

Articles
  

Articles:
  • Introduction to StAX by S. W. Eran Chinthaka   - [Clicks: 16]
    Tree- and event-based XML parsing, like SAX and DOM respectively, force the developer to make problematic tradeoffs of performance and code clarity. JSR-173 offers the Streaming API for XML, StAX, which allows the client much more control and a more sensible approach to XML parsing. Eran Chinthaka has our introduction to StAX.
    [Includes sample code]
    http://today.java.net/pub/a/today/2006/07/20/introduction-to-stax.html - Jul, 2006
  • Load, Save and Filter XML Documents Using the DOM Level 3 API by Deepak Vohra   - [Clicks: 29]
    The DOM Level 3 API introduces a number of new DOM features, including a new way of retrieving an XML parser. In this article, Deepak Vohra presents the load, save, and filter features found in the DOM Level 3 API.
    http://dev2dev.bea.com/pub/a/2006/02/load-save-dom.xml - Jul, 2006
  • StAX: DOM Ease with SAX Efficiency by Lara D'Abreo   - [Clicks: 36]
    StAX (the Streaming API for XML) is a memory-efficient, simple, and convenient way to process XML while retaining control over the parsing and writing process.
    [Includes source code]
    http://www.devx.com/Java/Article/30298 - Jan, 2006
  • Practical data binding: XPath as data binding tool, Part 2 by Brett McLaughlin   - [Clicks: 41]
    Once you understand XPath syntax and location paths, accessing XML without the overhead of DOM and SAX is possible and even easy. Fortunately for Java developers, the Java API for XML Processing (JAXP) provides a native Java solution for creating XPath requests and using the results in your applications. In this article, the second in a two-part series, you'll learn how to create an XPath request, execute that request, and work with the resulting node set -- all within a comfortable Java environment.
    [Includes sample code]
    http://www-128.ibm.com/developerworks/java/library/x-pracdb9/index.html - Jan, 2006

[Top]