LibGDX:将新值赋给 json
LibGDX: Put new value to json
我正在使用 JsonReader
和 JsonValue
,如下所示:
JsonReader json = new JsonReader();
JsonValue jsonValue = json.parse(Gdx.files.internal("file.json"));
我的问题是如何向 jsonValue
添加新项目或更新值?
我找到了解决方案:
jsonValue.remove("name");
jsonValue.addChild("name", new JsonValue("new Value"));
我正在使用 JsonReader
和 JsonValue
,如下所示:
JsonReader json = new JsonReader();
JsonValue jsonValue = json.parse(Gdx.files.internal("file.json"));
我的问题是如何向 jsonValue
添加新项目或更新值?
我找到了解决方案:
jsonValue.remove("name");
jsonValue.addChild("name", new JsonValue("new Value"));