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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T18:42:59+00:00 2026-06-09T18:42:59+00:00

I have the following type of XML that I’m trying to parse. The code

  • 0

I have the following type of XML that I’m trying to parse.

XmlToBeParsed

The code that I’m using to parse is this one:

parser.nextTag();
parser.require(XmlPullParser.START_TAG, null, "feed");

while(parser.nextTag() == XmlPullParser.START_TAG) {
    parser.require(XmlPullParser.START_TAG, null, "item");
    System.out.println(parser.getName());
    parser.require(XmlPullParser.END_TAG, null, "item");
}

Could someone please tell me what I’m doing wrong? The error I’m getting is XmlPullParserException unexpected type position: TEXT SORIN

  • 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-09T18:43:01+00:00Added an answer on June 9, 2026 at 6:43 pm

    parser.getName() gives you the name of the current tag (e.g. “item”). You want the text content of the current tag.

    Change System.out.println(parser.getName()); to

    parser.require(XmlPullParser.TEXT);
    System.out.println(parser.getText());
    

    It will still fail at the atom tag because it has no text, but I think you get the idea. Well, actually it will fail at the atom tag because you expect only item tags, but again that wasn’t really the question.

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

Sidebar

Related Questions

I have the following line of xml that I'm trying transform using XSLT but
I have a XML file that has the following data, <extcode Type=abc Code=12345 />
I have the following XML document that I have to parse using python's minidom:
I have the following XML that is built up at runtime using an XmlDocument
I have the following code that creates an xml doc self.errorlist.append( '<testcase classname=%(cls)s name=%(name)s
Ok so I have the following code. I'm trying to output some xml so
I have an XML Schema that contains the following type element: <xs:simpleType name=value> <xs:union
I have an XML schema that contains the following type : <xs:simpleType name=valuelist> <xs:list
I have the following code that creates and downloads an xml formatted page. My
I have the following jQuery $.ajax({ type: GET, url: http://f.cl.ly/items/0i1V1L1k2F440L1m2Y0G/pointdata.xml, dataType: xml, success: parseXml

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.