javaandroidxmlxml-parsingxom

premature end of file while parsing an xml file on android


I'm trying to read an xml file on from an android app using XOM as the XML library. I'm trying this:

Builder parser = new Builder();
Document doc = parser.build(context.openFileInput(XML_FILE_LOCATION));

But I'm getting nu.xom.ParsingException: Premature end of file. even when the file is empty.

I need to parse a very simple XML file, and I'm ready to use another library instead of XOM so let me know if there's a better one. or just a solution to the problem using XOM.

In case it helps, I'm using xerces to get the parser.

------Edit-----

PS: The purpose of this wasn't to parse an empty file, the file just happened to be empty on the first run which showed this error.


Solution

  • If you follow this post to the end, it seems that this has to do with xerces and the fact that its an empty file, and they didn't reach a solution on xerces side.

    So I handled the issue as follows:

    Document doc = null;
    try {
        Builder parser = new Builder();
        doc = parser.build(context.openFileInput(XML_FILE_LOCATION));
    }catch (ParsingException ex) { //other catch blocks are required for other exceptions.
       //fails to open the file with a parsing error.
       //I create a new root element and a new document.
       //I fill them with xml data (else where in the code) and save them.
        Element root = new Element("root");
        doc = new Document(root);       
    }
    

    And then I can do whatever I want with doc. and you can add extra checks to make sure that the cause is really an empty file (like check the file size as indicated by one of sam's comments on the question).