Posts by Pedro Januario • 1 point
3 posts
-
0
votes1
answer76
viewsA: How to handle a JSON with fasterXML in java?
In mine I am using log to show instead of sysout ObjectMapper mapper = new ObjectMapper(); List<String> node = new ArrayList<>(); JsonNode objectRoot = mapper.readTree(code);…
-
0
votes1
answer76
viewsQ: How to handle a JSON with fasterXML in java?
I have a json that comes from the bank Mongodb, I have to take and manipulate the json using fasterXml. I will have to take the names of the json properties and separate them with dot(.) instead of…
-
-1
votes2
answers828
viewsQ: Get Json properties name
How do I get the properties names of a Json using the library Gson? Input example: { "Ficha":[ { "nome":"nome", "sobrenome":"sobrenome", "idade":"idade", "endereco":"endereco", "empresa":"empresa",…