I encode a function in which I read and write json. However, I can read json elements from a file, but I cannot edit the same loaded object. Here is my code I'm working on.
InputStream inp = new FileInputStream(jsonFilePath); JsonReader reader = Json.createReader(inp); JsonArray employeesArr = reader.readArray(); for (int i = 0; i < 2; i++) { JsonObject jObj = employeesArr.getJsonObject(i); JsonObject teammanager = jObj.getJsonObject("manager"); Employee manager = new Employee(); manager.name = teammanager.getString("name"); manager.emailAddress = teammanager.getString("email"); System.out.println("uploading File " + listOfFiles[i].getName()); File file = insertFile(...); JsonObject tmpJsonValue = Json.createObjectBuilder().add("fileId", file.getId()).add("alternativeLink",file.getAlternateLink()).build(); jObj.put("alternativeLink", tmpJsonValue.get("alternativeLink")); <-- fails here }
At startup, I get the following exception.
Exception in thread "main" java.lang.UnsupportedOperationException at java.util.AbstractMap.put(AbstractMap.java:203) at com.mongodb.okr.DriveQuickstart.uploadAllFiles(DriveQuickstart.java:196) at com.mongodb.okr.App.main(App.java:28)
source share