what is parsing ?And how we can implement it in j2me?
+2
A:
In computer science and linguistics, parsing, or, more formally, syntactic analysis, is the process of analyzing a text, made of a sequence of tokens (for example, words), to determine its grammatical structure with respect to a given (more or less) formal grammar.
troelskn
2010-09-10 11:19:04
A:
Parsing is the process by which you scan a FILE (probably a text file) and do something with it. Depending on what you are trying to parse (XML, HTML, C code, Java code, anything...) you need to use a specific part of Java ME to do it.
Since I guess you are probably meaning XML parse, you can read this document to do it.
Pablo Santa Cruz
2010-09-10 11:20:37
thanks mr pablo-santa-cruz
ManMohan
2010-09-10 11:38:34