My app needs to output its data in xml files. Someone pointed me to XmlBuilder. I have the java-xmlbuilder-0.4.jar file but need its xml to use in the b4a library. Catch 22 lol Does anyone use it? can you post the needed files?
For completion - Xml2Map includes a class named Map2Xml which creates an XML document from a map, however it is probably not relevant for your case as you will need a specific structure.
Nobody likes to parse XML. Parsing JSON is simple and fun. Parsing XML is tedious and boring. That is the reason behind the Xml2Map class. It internally parses the XML document and returns a Map with the parsed data. It is similar to parsing JSON. Tip: You can use this tool to help you with...