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

  • Home
  • SEARCH
  • 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 4619550
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T02:26:22+00:00 2026-05-22T02:26:22+00:00

Xml parsing api is throwing sax parse exception, If i try to parse a

  • 0

Xml parsing api is throwing sax parse exception, If i try to parse a xml file which has attributes at root node.

One thing i have noticed is that, this happens if there is a UTF-8 BOM character at the start of the string, if i remove the BOM character things work fine. This code is working fine on 3.0 sdk and below, i saw this problem only in 3.1

am using following parser:

    DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();
    DocumentBuilder builder = docFactory.newDocumentBuilder();

    Document doc = null;
    StringReader sr = new StringReader(xmlString);
    InputSource is = new InputSource(sr);

    doc = builder.parse(is);
  • 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-05-22T02:26:23+00:00Added an answer on May 22, 2026 at 2:26 am

    Try this:

    public Document parse(String xml) throws ParsingFailedException {
       try {
          DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
          DocumentBuilder builder = factory.newDocumentBuilder();
    
          //encode the xml to UTF -8
    
          ByteArrayInputStream encXML = new ByteArrayInputStream(xml.getBytes("UTF8"));
    
          Document doc = builder.parse(encXML);
          log.error("XML parsing OK");
    
          return doc;
       } catch (Exception e) {
          log.error("Parser Error:" + e.getMessage());
          throw new ParsingFailedException("Failed to parse XML : Document not well formed", e);
       }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've the following problem: I'm parsing an XML File from Flickr API http://api.flickr.com/services/feeds/photos_public.gne?tags= with
I'm parsing an XML file which can contain localized strings in different languages (at
I'm parsing XML results from an API call using PHP and xpath. $dom =
Trying to use an excpetion class which could provide location reference for XML parsing,
I'm parsing big XML file with XPathExpression selection for some nodes existing at various
I am parsing a XML file in Java using the W3C DOM. I am
I am trying to follow a tutorial about xml parsing http://www.edumobile.org/iphone/iphone-programming-tutorials/parsing-an-xml-file/ . The tutorial
I am about to write junit tests for a XML parsing Java class that
I am parsing XML with an XMLReader using a XMLReaderSettings object with the event
Is there a simple method of parsing XML files in C#? If so, what?

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.