gpt4 book ai didi

java - JSON 文件 - Java : editing/updating fields values

转载 作者:搜寻专家 更新时间:2023-11-01 02:59:58 26 4
gpt4 key购买 nike

我的工作流程中有一些 JSONObject,并且通过将它们写入 json 文件来存储相同的 JSONObject。

我想要一种更新 json 文件的有效方法,仅在需要的字段,使用较新的 JSONObjects 实例的内容。

例如:

我有文件

ObjectOnFile = {key1:val1, key2:val2,...}

内存中有

ObjectInMemory = {key1:val1_newer, key2:val2_newer,...}

更新如下:

 if (!(ObjectInMemory.get(key1).equals(ObjectOnFile.get(key1)))
// update file field value <--- how to?

一般来说,我想更新内容较新(不同)的每个键的值。

其实我的代码是:

import org.json.JSONObject;
import com.fasterxml.jackson.databind.ObjectMapper;

ObjectMapper mapper = new ObjectMapper();
Sting key = "key1"; //whatever
JSONObject jo = new JSONObject("{key1:\"val1\", key2:\"val2\"}");
JSONObject root = mapper.readValue(new File(json_file), JSONObject.class);
JSONObject val_newer = jo.getJSONObject(key);
JSONObject val_older = root.getJSObject(key);
if(!val_newer.equals(val_older)){
root.put(key,val_newer);
/*write back root to the json file...how? */
}

最佳答案

简单地说,你可以这样做:

import java.io.File;
import java.io.FileWriter;
import java.io.IOException;

import org.json.JSONException;
import org.json.JSONObject;

import com.fasterxml.jackson.databind.ObjectMapper;


public class Test {

public static void main(String[] args) throws JSONException, IOException
{
ObjectMapper mapper = new ObjectMapper();
String key = "key1"; //whatever

JSONObject jo = new JSONObject("{key1:\"val1\", key2:\"val2\"}");
//Read from file
JSONObject root = mapper.readValue(new File("json_file"), JSONObject.class);

String val_newer = jo.getString(key);
String val_older = root.getString(key);

//Compare values
if(!val_newer.equals(val_older))
{
//Update value in object
root.put(key,val_newer);

//Write into the file
try (FileWriter file = new FileWriter("json_file"))
{
file.write(root.toString());
System.out.println("Successfully updated json object to file...!!");
}
}
}
}

关于java - JSON 文件 - Java : editing/updating fields values,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38041893/

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