Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8589063
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T22:57:19+00:00 2026-06-11T22:57:19+00:00

Is there a direct substitute in standard Java ( J2SE ) 6 (no JDOM

  • 0

Is there a direct substitute in standard Java (J2SE) 6 (no JDOM or other third party libraries) for the Apache Xerces XML DOM document parsing and iterating classes? Using the Sun J2SE XML implementation, i.e.,

com.sun.org.apache.xerces.internal.dom.DocumentImpl
com.sun.org.apache.xerces.internal.dom.NodeIteratorImpl
com.sun.org.apache.xerces.internal.parsers.DOMParser

causes warnings by the compiler that each use of these classes “is Sun proprietary API and may be removed in a future release”.

The code I currently use for instantiating a generic NodeIterator object is

org.w3c.dom.Document document = ...; // Get an XML DOM Document object

org.w3c.dom.NodeIterator iterator = new NodeIteratorImpl(new DocumentImpl(
    document.getDoctype()), document.getDocumentElement(),
    NodeFilter.SHOW_ALL, null, true);

The NodeIterator visits the nodes of an XML DOM document in depth-first search order, which is essential for my application and so the above code needs to be replaced with something functionally equivalent.

Also, would the best (= standard and fastest) way of creating a new org.w3c.dom.Document object be something like

Document = DocumentBuilderFactory.newInstance().newDocumentBuilder.parse(source)

where source is a properly instantiated org.xml.sax.InputSource object?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T22:57:21+00:00Added an answer on June 11, 2026 at 10:57 pm

    The NodeIterator is part of the DOM traversal spec. You can check whether a particular Document supports traversal by testing whether it is an instanceof org.w3c.dom.traversal.DocumentTraversal (the standard implementation in the JRE should be). If so, you can cast it and do

    NodeIterator ni = ((DocumentTraversal)document).createNodeIterator(
          document.getDocumentElement(), NodeFilter.SHOW_ALL, null, true);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a direct analog to this in C++? for num in [1,4,5] :
Is there a direct way to parse an iCalendar date to .net using c#?
Is there a direct programmatic way to get a fill_parent View's pixel height and
As far as i know, there is no direct equivalent in C#. My current
Just to preface my question, I understand that there is no direct support for
Is there any formula to direct finding D.O.B from put Year,month and day's in
Is there any way to get direct URL to a JSF bean action method?
Is there any way I can direct display PDF files in modal boxes? I
Is there a CakePhp way to disable direct access to directories to visitors? I
Is there an easy way to generate docs for REST api direct from a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.