I am using JDOM to create XML and during parsing i am getting this exception "Could not find class 'java.rmi.RemoteException', referenced from method org.jdom.JDOMException.getNestedException " which cause a crash in program .This exception occurs very frequently but not always Any body has faced same problem . Any help would be appreciated Thanks in advance.

link|improve this question

48% accept rate
SAXBuilder builder = new SAXBuilder(); Document doc = null; try { doc = builder.build(new StringReader(xmlData)); }catch(Exception e) { e.printStackTrace(); } getting exception at build.build – Sam97305421562 Dec 9 '09 at 12:31
1  
There are three XML parsers already on Android: DOM, SAX, and XmlPullParser. Why do you need a fourth? – CommonsWare Dec 9 '09 at 14:35
feedback

2 Answers

Well there is no RMI implementation in android platform, so it pretty obviously the reason of the exception. Don't know why JDOM needs java.rmi.RemoteException through

Edit: There is a code inside of JDOMException which checks instanceof expression against java.rmi.RemoteException so this is the root of problem.

link|improve this answer
feedback

i've done the xml parsing in android. check this link for the build. Hope it helps you..

compliantbox.com/XmlParsingcompliant.zip

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.