user1488348
user1488348

Reputation: 3

How can I convert String to Map with a Map as one of the "values"?

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

Answers (1)

Hao Liu
Hao Liu

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

Related Questions