I'm using the Gson library in Java, I have the following structure in a json file:
{"idAluno":4, "nomeAluno":"Teste da Silva", "listaDeTurmas":[1,2,4]}
Is it possible, with this library, to change the "list ofTurmas" entry to include / remove values from it? For example, add the value 3 or remove the value 4. Or is there some other Json manipulation library that would give me a function for this?