Xml parsing in j2me
I want to do xml parsing in j2me for fetching data (sms, mms, location) from server to mobile. I am using Netbeans 6.8 as an IDE. It is not allowing me to import below 2 file:
import org.kxml.*;
import org.kxml.parser.*;
When I am trying to import xml it is showing me
import org.xml.sax.SAXParseException;
How can开发者_如何学JAVA I use kxml parser class?
We have kxml to parse XML in ME env. Here is sample code with proper explanation
Here is what you exactly need.
Lot of XML parser available. But I suggest KXML is better and download here. See this sample code for your reference.
精彩评论