我有一个这种格式的java String
"{name:MyName, rage:200, height:100}"
我需要将其转换为JsonObject,其格式应为格式
{name:MyName, rage:200, height:100} // that is i want to remove the start and end double quotes fro the above string .
有人可以帮助我。
答案 0 :(得分:2)
使用json.org库。它就像new JSONObject(s);
一样简单,其中s是String
。
答案 1 :(得分:1)
您是否尝试过Jackson JSON库? It's pretty easy to use an ObjectMapper to create a JsonNode as a tree structure and parse away from there.
答案 2 :(得分:0)
如果您只想删除引号,请使用StringUtils.mid完成工作
final String input = "\"{name:MyName, rage:200, height:100}\"";
final String result = StringUtils.mid (input, 1, input.length () - 2);
// result should not contain the beginning and ending quotes