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 9196827
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T21:56:09+00:00 2026-06-17T21:56:09+00:00

I using SAX to parse XML & fetch number of elements from it. In

  • 0

I using SAX to parse XML & fetch number of elements from it.

In XML, there exists <item> tag number of times(easily > 50). But I want to fetch it only first 20.

Code of calling XMLHanlder:

XMLHandler handler = new XMLHandler();
xmlReader.setContentHandler(handler);
xmlReader.parse(new InputSource(in));

Code for XMLHandler:

public class XMLHanlder extends DefaultHandler {

    @Override
    public void startDocument() throws SAXException {
    ...
    }

    @Override
    public void startElement(String uri, String localName, String qName,
        Attributes attributes) throws SAXException {
    ...
    }


    @Override
    public void endElement(String uri, String localName, String qName)
        throws SAXException {
    ...
    }

    @Override
    public void characters(char[] ch, int start, int length) throws SAXException {
    ...
    }
}

Is there any way that startElement()/endElement() does not get called more than 20 times.

If not is there any workaround?

Thanks

  • 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-17T21:56:10+00:00Added an answer on June 17, 2026 at 9:56 pm

    SAX does not offer any such functionality. A workaround is simply to use a counter:

    public class XMLHandler extends DefaultHandler {
    
       private int counter = 0;
    
       @Override
       public void startElement(String uri, String localName, String qName,
                                           Attributes attributes) throws SAXException {
    
          if (counter < 20) {
                ...
          } else {
             return;
          }
        }
    
       @Override
       public void endElement(String uri, String localName, String qName)
                                                        throws SAXException {
          counter++;
          ....
       }
       ...
    } 
    

    Optional here are the explicit assignment to 0 for the counter value (will take that value by default).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using SAX to parse an XML file I'm pulling from the web.
I am using SAX Parser to parse XML data from a http url. I
I have to parse xml from the content of a Jetty buffer using SAX
I want to parse some data from an xml file using SAX parser. My
I am using SAX to parse some XML. Let's say I have the following
I have a problem with using the SAX parser to parse a XML file.
I have been using sax and Dom parsers to parse an Xml file in
I'm currently using SAX (Java) to parse a a handful of different XML documents,
I am trying to parse XML in Perl using XML::SAX parser . My query
I have to parse a XML structure in JAVA using the SAX parser. The

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.