溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java微信公眾號安全模式消息解密的具體代碼分享

發(fā)布時間:2021-09-06 15:28:09 來源:億速云 閱讀:489 作者:chen 欄目:編程語言

這篇文章主要介紹“Java微信公眾號安全模式消息解密的具體代碼分享”,在日常操作中,相信很多人在Java微信公眾號安全模式消息解密的具體代碼分享問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Java微信公眾號安全模式消息解密的具體代碼分享”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

本文實例為大家分享了Java微信公眾號安全模式消息解密的具體代碼,供大家參考,具體內容如下

1.微信公眾平臺下載解密工具,導入項目中,根據demo解密消息,解密工具官方下載地址:點擊打開鏈接

 public static String streamToString(HttpServletRequest request) throws IOException {
  BufferedReader reader = new BufferedReader(new InputStreamReader(request.getInputStream()));
  StringBuilder sb = new StringBuilder();
  String line;
  try {
   while ((line = reader.readLine()) != null) {
    sb.append(line);
   }
  } catch (IOException e) {
   e.printStackTrace();
  }
  return sb.toString();
 }
 
 /**
  * xml轉為map集合
  *
  * @param request
  * @param msg
  * @return
  * @throws IOException
  * @throws DocumentException
  */
 public static Map<String, String> xmlToMap(HttpServletRequest request, Message msg) throws Exception {
  SAXReader reader = new SAXReader();
  String token = "";
  String encodingAesKey = "";
  String appId = "";
  //獲取加密消息xml字符串
  /* String format = "<xml><ToUserName><![CDATA[toUser]]></ToUserName><Encrypt><![CDATA[%1$s]]></Encrypt></xml>";
  Document document = reader.read(request.getInputStream());
  Element rootElement = document.getRootElement();
  Element encrypt = rootElement.element("Encrypt");*/
//  String fromXML = String.format(format, encrypt.getText());
  String fromXML = streamToString(request);
  //解密消息
  WXBizMsgCrypt pc = new WXBizMsgCrypt(token, encodingAesKey, appId);
  //獲得解密消息
  String result = pc.decryptMsg(msg.getMsg_signature(), msg.getTimestamp(), msg.getNonce(), fromXML);
  Map<String, String> map = new HashMap<>(6);
  //將解密后的消息轉為xml
  Document doc = DocumentHelper.parseText(result);
  Element root = doc.getRootElement();
  List<Element> list = root.elements();
  for (Element e : list) {
   map.put(e.getName(), e.getText());
  }
  return map;
 }

Message實體類

package com.caisin.weixin.domain;
 
import lombok.Data;
 
@Data
public class Message {
 private String signature;
 private String timestamp;
 private String nonce;
 private String openid;
 private String msg_signature;
 private String encrypt_type;
}

2.將JDK中 jdk\jre\lib\security\policy\unlimited目錄中l(wèi)ocal_policy.jar和US_export_policy.jar兩個文件拷貝到 jdk\jre\lib\security目錄下

Java微信公眾號安全模式消息解密的具體代碼分享

到此,關于“Java微信公眾號安全模式消息解密的具體代碼分享”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注億速云網站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI