Reputation: 3
Could someone please help me to convert this String
into a Map
...
String str = "{"id":1,"result":[{"employeeId":131969,"id":1164299,"name":"Prosjekt","javaClass":"no.tripletex.tcp.model.Project","number":"","displayName":"Prosjekt"}]}"
Upvotes: 0
Views: 154
Reputation: 122
From the format of your string, it seems like you need a JSON parser, no matter what language you are using.
There are many json parser here
Here is a Java json parser, you may follow its example.
Upvotes: 1