<dependency>
		<groupId>com.alibaba</groupId>
		<artifactId>fastjson</artifactId>
		<version>1.2.47</version>
	</dependency>
   /**
    * post请求解析Json格式
    * @param response JSON字符串
    * @return
    */
	public JsonRespone alipayAesDecrypt(String response) {
	
		   Map<String, String> openapiResult = null;
	       try{
	           openapiResult = JSON.parseObject(response,new TypeReference<Map<String, String>>() {}, Feature.OrderedField);
	       } catch (Exception e){
	           logger.error("参数解析失败:"+e.getMessage());
	       }
		   String strJson = openapiResult.get("节点名称");
		   
		   return strJson 
	}
	

   /**
    * post请求解析Json格式
    * @param request 接口地址
    * @return
    */
	public static String postReceive(HttpServletRequest request)throws IOException {
		ByteArrayOutputStream inBuffer = new ByteArrayOutputStream();
		InputStream input = request.getInputStream();
		byte[] tmp = new byte[1024];
		int len = 0;
		while ((len = input.read(tmp)) > 0) {
			inBuffer.write(tmp, 0, len);
		}
		byte[] buffer = inBuffer.toByteArray();
		String requestJsonStr = new String(buffer, "UTF-8");
		return requestJsonStr;
	}
GitHub 加速计划 / js / json
17
5
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:2 个月前 )
960b763e 5 个月前
8c391e04 8 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐