如何用Java编写JSON文件

时间:2017-11-26 19:00:25

标签: json gson

我是使用Java将JSON写入文件的新手。我要求以下列格式发送,需要用Java编写。

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

请帮忙。

1 个答案:

答案 0 :(得分:0)

导入 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());
}

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