views:

17

answers:

1

Hi frnds I wann develop J2ME application .. in this application i've to use XML parsing .. so plz tell me how i can do this... currently i'm using ECLIPSE IDE.... on Internet I got lots of source code but...there is conman problem "java.lang.NoClassDefFoundError: org/kxml/parser/XmlParser" .. so I'm not able to solve this problem....../

Thanks , Neel..

A: 

You got that error because these parsers are for Java SE, not Java ME.

Here's official Sun's resource with list of XML parsers and a few examples:
http://developers.sun.com/mobility/midp/articles/parsingxml/

XML parser that most people consider the best: kXML

Found by googling for "j2me xml parser", that's not so hard!

BlaXpirit