我是使用Java将JSON写入文件的新手。我要求以下列格式发送,需要用Java编写。
{
Name : "sam",
"Id":"1234",
"Values": {
"Car":"Maruti"
},
"Price":"100000"
}
请帮忙。
答案 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());
}
不要忘记正确设置文件路径!