gpt4 book ai didi

java - 使用 Java 将 JSON 转换为 XML

转载 作者:数据小太阳 更新时间:2023-10-29 02:25:56 25 4
gpt4 key购买 nike

我正在尝试将 JSON 转换为 XML。但我收到无法解析 org.json 的错误。我还导入了外部 jar 文件 java-json.jar。下面是我的java代码:

import org.json.JSONObject;
public class JsontoXML{
public static void main(String args[])
{
String str ={'name':'JSON','integer':1,'double':2.0,'boolean':true,'nested' {'id':42},'array':[1,2,3]}";
JSONObject json = new JSONObject(str);
String xml = XML.toString(json);
System.out.println(xml);

}

最佳答案

您的应用程序没问题。您需要有一个格式正确的 JSON 对象。

源代码

package algorithms;

import org.json.JSONObject;
import org.json.XML;
public class JsonToXML{
public static void main(String args[])
{
JSONObject json = new JSONObject("{name: JSON, integer: 1, double: 2.0, boolean: true, nested: { id: 42 }, array: [1, 2, 3]}");

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

}
}

检查上面的例子。

输出:

<boolean>true</boolean><array>1</array><array>2</array><array>3</array><double>2.0</double><name>JSON</name><integer>1</integer><nested><id>42</id></nested>

关于java - 使用 Java 将 JSON 转换为 XML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36290326/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com