2012-11-21 221 views
0

我有這種格式轉換Java字符串以JSON對象

"{name:MyName, rage:200, height:100}" 

Java字符串,我需要將其轉換爲JSONObject的應該是以下格式

{name:MyName, rage:200, height:100} // that is i want to remove the start and end double quotes fro the above string . 

有人能幫助我在這。

回答

2

使用json.org庫。它與new JSONObject(s);一樣簡單,其中s是String

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