Skip to content
Advertisement

Convert from LinkedHashMap to Json String

I’m Workin with Mongo using Jongo, when I do a query I receive a LinkedHashMap as result.

JavaScript

the problem is that if the json is {"user":"something"} content will be {user=something}, it is not a json is only toString method from HashMap.

How I can get the original JSON?

I don’t have a class to map the response and it isn’t a solution create a map class, that is why I use a Object.class.

Advertisement

Answer

If you have access to some JSON library, it seems like that’s the way to go.

If using org.json library, use public JSONObject(java.util.Map map):

JavaScript

If Gson, use the gson.toJson() method mentioned by @hellboy:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement