Questions tagged [kxml]

For issues relating to the kXML parser.

kXML is a small XML pull parser, specially designed for constrained environments such as Applets, Personal Java or MIDP devices.

, the current version of kXML, can be found at GitHub.

19 questions
0
votes
1 answer

Dlang kxml getCData usage

I'm using in my project such library for XML parsing: https://github.com/opticron/kxml/blob/master/source/kxml/xml.d Here is my example code: void main() { string xmlstring = cast(string)read("test.xml"); XmlNode newdoc =…
user3069488
  • 75
  • 1
  • 6
0
votes
2 answers

package org.kxml2.kdom does not exist

I added a mini xpath processor into my JavaME codes. I get this error: package org.kxml2.kdom does not exist How do I fix this? Hope someone could help me on this. Thank you in advance.
cancelledout
  • 538
  • 1
  • 10
  • 24
0
votes
1 answer

convert xml document to string using kxml2 library

I need to convert XML document with kxml2 lib to string. Here I create the document using kxml: org.kxml2.kdom.Document doc = new org.kxml2.kdom.Document(); org.kxml2.kdom.Element command = doc.createElement("", "parent"); …
0
votes
1 answer

List menu by Parse XML in J2ME

I want to create menu from XMLFile. My xml is like this
Mahadi Siregar
  • 615
  • 3
  • 17
  • 38
1
2