java后台通过HTTPS(POST)收发JSON格式数据

https通讯的主要实现参照此地址:https://my.oschina.net/gaopeng8/blog/350102

通过上述方式可以得到收发方法post()。传入字符串,返回字节数组。

传入的字符串处理:

JSONObject rspObj = new JSONObject();
rspObj.put("arg1", "aaa");
rspObj.put("arg2", "bbb");
//...
String reqStr = rspObj.toString();
System.out.println("请求json:\n" + reqStr);

返回的字节数组转字符串:

byte[] result = post(reqUrl,reqStr,"utf-8");
if(result != null){
    String rspStr = new String(result);
	System.out.println("响应json:\n" + rspStr);
}

 

你可能感兴趣的:(java)