Meine JSON-Datei sieht so aus. {"RunDate": 12.01.2015, "Execute": "Y"}. Ich habe den Code zum Lesen der JSON-Datei geschrieben und versuche, die Datei zu aktualisieren, indem ich eine neue Datei schreibe.
Code: Select all
JSONParser parser = new JSONParser();
try {
FileReader fr = new FileReader("c:\\B\\myControl.json");
Object obj = parser.parse(fr);
JSONObject jsonObject = (JSONObject) obj;
ExecuteRun = (String) jsonObject.get("Execute");
RunDate = (String) jsonObject.get("RunDate");
//update
jsonObject.put("Execute", "N");
jsonObject.put("RunDate", RunDate);
FileWriter file = new FileWriter("c:\\B\\mycontrol.json", true);
try {
file.write(jsonObject.toJSONString());
} catch (Exception e) {
e.printStackTrace();
} finally {
file.flush();
file.close();
}
} catch(Exception e) {
e.printStackTrace();
}
Kann mir jemand helfen?
Mobile version