对象转JSONObject

假设一个对象 如下:

success={"id":"12521h415"}

String data = EntityUtils.toString(success);
JSONObject jsonObject=JSONObject.parseObject(data);
String id= jsonObject.getString("id");

//  id为:12521h415

你可能感兴趣的:(java)