String userStr=readJSONString(request);
System.out.println(userStr);//能输出
JSONObject jsonObj = JSONObject.fromObject(userStr);//我感觉这有问题
System.out.println(jsonObj.getInt("userid"));//后台没输出
System.out.println(jsonObj.getString("username"));
输出结果如下
应该是
JSONObject
import错了,或者是版本不对吧,我本地用的是 json-lib-2.4net.sf.json.JSONObject
,是OK的。