标签:java build parse NPU ring end PFS puts tps
//获取json对象 BufferedReader br = new BufferedReader(new InputStreamReader(req.getInputStream(), "UTF-8")); String line = null; StringBuilder sb = new StringBuilder(); while ((line = br.readLine()) != null) { sb.append(line); } String reqBody = sb.toString();
//转成map
Map maps = (Map) JSON.parse(reqBody)
json转map:https://www.cnblogs.com/jpfss/p/8625526.html
标签:java build parse NPU ring end PFS puts tps
原文地址:https://www.cnblogs.com/zzw3014/p/11858796.html