xml和json相互转换的代码

前端之家收集整理的这篇文章主要介绍了xml和json相互转换的代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
public class XMLExchangeJson {

	private static final String STR_JSON = "{\"name\":\"Michael\",\"address\":{\"city\":\"Suzou\",\"street\":\" Changjiang Road \",\"postcode\":100025},\"blog\":\"http://www.ij2ee.com\"}";

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		String xml = jsonToXML(STR_JSON);
		System.out.println(xml);

		String json = xmlToJson(xml).toString();
		System.out.println(json);
	}

	public static String jsonToXML(String json) {
		JSONObject jsonObj = JSONObject.fromObject(json);
		String xml = new XMLSerializer().write(jsonObj);
		return xml;
	}

	public static JSON xmlToJson(String xml) {
		return new XMLSerializer().read(xml);
	}
}


写了2个小方法,用于xml和json之间的相互转换。


在用之前需要下载相关jar包。

jar已经上传到我的资源下,可以免费下载。

原文链接:https://www.f2er.com/xml/296541.html

猜你在找的XML相关文章