Hi,
I am getting the following Exception while building the XML Document from
String.
org.jdom.JDOMException: Error on line -1: Premature end of file.
at org.jdom.input.SAXBuilder.build(SAXBuilder.java:300)
at org.jdom.input.SAXBuilder.build(SAXBuilder.java:650)
The code is like this :
try{
SAXBuilder builder=new SAXBuilder();
doc=builder.build(new StringReader(xml_Content.trim()));
}catch(JDOMException e){
e.printStackTrace();
System.out.println("..............error while building the XML--Document "+e.getCause()+"-"+e.getMessage());
}
Here xml_Content is String Object.What might be the reason.
anybody knows please help me,
Thanks in Advance,
LALITH