gson 如何在Java中将JSON写入文件

e5nqia27  于 2022-11-06  发布在  Java
关注(0)|答案(1)|浏览(263)

我是新的写JSON到文件使用Java。我有请求被发送在以下格式,需要用Java写。

{
Name : "sam",
"Id":"1234",
"Values": {
            "Car":"Maruti"
           },
"Price":"100000"
}

请帮帮忙。

xsuvu9jc

xsuvu9jc1#

导入json.org并尝试以下操作:

JSONObject json = new JSONObject(); //creates main json
json.put("Name", "sam");
json.put("Id", 1234);

JSONObject valuesJson = new JSONObject(); //another object
valuesJson.put("Car", "Maruti");

json.put("Values", valuesJson); //puts a json inside another

String jsonString = json.toString();

//next, saves the file:
PrintWriter out1 = null;
try {
    out1 = new PrintWriter(new FileWriter("C:\\Users\\YOURNAME\\Documents\\json.txt"));
    out1.write(jsonString);
} catch (Exception ex) {
    System.out.println("error: " + ex.toString());
}

不要忘记正确设置文件路径!

相关问题