日期:2014-05-16 浏览次数:20417 次
DataInputStream input = new DataInputStream(request.getInputStream());
String str;
Object o = null;
while (null != ((str = input.readLine()))) {
o = str;
}
input.close();
JSONObject jos = JSONObject.fromObject(o);
Object obj = jos.get("jsonData");