XML Reading org.xml.sax.SAXParseException: Expecting end of file.
- by vivekbirdi
Hi,
I am getting problem while parsing XML File using JDE 4.6.
FileConnection fconn = (FileConnection)Connector.open
("file:///SDCard/Dictionary.xml",Connector.READ_WRITE);
InputStream din= fconn.openInputStream();
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
Document document = builder.parse(din);
here I am getting Exception at
Document document = builder.parse(din);
org.xml.sax.SAXParseException: Expecting end of file.
please give me some solution.
Thanks