我正在尝试将xml文件转换为json并向后转换,但是当这样做时,完整性会发生变化,来自:
<option value="0">
<!--something-->
</option>
到
<option>
<!--something-->
<value>0</value>
</option>
我在使用org.json时得到这个,是否有另一个json库可以在保持文件完整性的同时完成这项工作?
答案 0 :(得分:1)
有一个带有静态方法U.xmlToJson(xml)
的{{3}}库。我是该项目的维护者。
<option value="0">
<!--something-->
</option>
输出:
{
"option": {
"-value": "0",
"#comment": "something"
},
"#omit-xml-declaration": "yes"
}
答案 1 :(得分:-3)
XML to Json
import net.sf.json.JSONObject;
import org.json.JSONObject;.
public class Main {
public static int PRETTY_PRINT_INDENT_FACTOR = 4;
public static String TEST_XML_STRING ="ur xml";
public static void main(String[] args) {
try {
JSONObject xmlJSONObj = XML.toJSONObject(TEST_XML_STRING);
String jsonPrettyPrintString = xmlJSONObj.toString(PRETTY_PRINT_INDENT_FACTOR);
System.out.println(jsonPrettyPrintString);
} catch (JSONException je) {
System.out.println(je.toString());
}
}
}
json到xml:
import org.json.JSONException;
import org.json.JSONObject;
import org.json.XML;
public class jsontoxml {
public static void main(String[] args) throws JSONException {
String str="ur json here";
JSONObject json = new JSONObject(str);
String xml = XML.toString(json);
System.out.println(xml);
}
}