讀取json形式報文時,controller中用request.getParameter無法獲取到報文中的引數
阿新 • • 發佈:2018-12-16
", "8611");
// String timestamp = String.valueOf(System.currentTimeMillis());
// pMap.put("timestamp", timestamp);//交易時間戳,格林威治時間,精確到毫秒。
// String nonce = RandomStringUtils.randomAlphanumeric(20);
// pMap.put("nonce", nonce);//隨機數,長度20,數字+字母
pMap.put("data", json);
// String linkStr = LinkUtil.getLinkString(pMap);//除去陣列中的空值和簽名引數,把陣列所有元素,按照“引數=引數值”的模式用“&”字元拼接成字串
// String signContent = "a12dadf_12asdfadsfaf213hzewangADq1da249jbb_10AF1As";//大童金鑰
// String signature = MD5.sign(linkStr, signContent, "UTF-8");//需要簽名的字串+金鑰 MD5加密 編碼格式UTF-8
// pMap.put("signature", signature);
System.out.println("請求:"+json);
// System.out.println("json:"+json);
//訪問內部
String reStr = HttpUtil.post(url, pMap);
//訪問外網
// String reStr = HttpUtil.postByProxy(url, pMap);
System.out.println("返回結果:"+reStr);
}