Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Specific code sharing of Java Wechat official account security mode message decryption

2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly introduces "Java Weixin Official Accounts Security Mode Message Decryption Specific Code Sharing." In daily operation, I believe many people have doubts about the specific code sharing of Java Weixin Official Accounts Security Mode Message Decryption. The editor consulted various materials and sorted out simple and easy operation methods. I hope to answer your doubts about "Java Weixin Official Accounts Security Mode Message Decryption Specific Code Sharing." Next, please follow the small series to learn together!

The example of this article shares the specific code for decrypting Java Weixin Official Accounts security mode messages for your reference. The specific contents are as follows

1. WeChat public platform download decryption tool, import project, according to demo decryption message, decryption tool official download address: click open link

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 to map collection * * @param request * @param msg * @return * @throws IOException * @throws DocumentException */ public static Map xmlToMap (HttpServletRequest request, Message msg) throws Exception { SAXReader reader = new SAXReader(); String token = ""; String encodingAesKey = ""; String appId = "";//Get encrypted message xml string/* String format = ""; 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);//decrypt the message WXBizMsgCrypt pc = new WXBizMsgCrypt(token, encodingAesKey, appId); //obtain the decrypted message String result = pc.decryptMsg(msg.getMsg_signature(), msg.getTimestamp(), msg.getNonce(), fromXML); Map map = new HashMap(6); //convert the decrypted message to xml Document doc = DocumentHelper.parseText(result); Element root = doc.getRootElement(); List list = root.elements(); for (Element e : list) { map.put(e.getName(), e.getText()); } return map; }

Message Entity Class

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

2. Copy the files local_policy.jar and US_export_policy.jar from the directory jdk\jre\lib\security\policy\unlimited in JDK to the directory jdk\jre\lib\security

At this point, the study of "Java Weixin Official Accounts Security Mode Message Decryption Specific Code Sharing" is over, hoping to solve everyone's doubts. Theory and practice can better match to help everyone learn, go and try it! If you want to continue learning more relevant knowledge, please continue to pay attention to the website, Xiaobian will continue to strive to bring more practical articles for everyone!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 205

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report