Java微信公衆號開發之準備工作(圖文說明)

說明:官方的文檔很詳細,一定一定要耐着性子認真閱讀

一、開發前的準備工作

  1. 註冊賬號:進入微信公衆平臺,點擊右上角立即註冊,(個人用戶只能選擇訂閱號),按照提示填寫信息即可
  2. 測試賬號申請:如果暫時不想註冊賬號=,可選擇官方提供的測試賬號申請。申請地址:測試號申請點擊後掃描二維碼,即可獲得一個測試賬號,擁有服務號全部權限。圖片
  3. 擁有自己的服務器和域名:阿里雲、騰訊雲等,如果你暫時不想花錢買,可先在網上註冊一個免費試用的。我用的是福佳JSP空間注意:得先註冊再領取試用,領取完成後會送一個免費的域名
    福佳jspjsp面板

  4. 如果你用的是測試號的話,則在申請頁面配置服務器的URL和TOKEN,url就是上面的域名加上項目的請求地址(下面會講解),TOKEN就是你自己定義的合法的字符串,用於程序和微信服務器的驗證
    server
    如果用的是自己的賬號,則需要在微信公衆平臺的 “開發”—>”基本配置”,配置服務器的URL和token
    selfServer

二、編程驗證消息來自微信服務器

  1. 新建一個web項目,寫一個servlet, 將配置好servlet的訪問路徑拼接在上面的域名後面(這就是上面需要位置的服務器的URL的全路徑),根據開發文檔可知文檔
    程序代碼:
    本地加密
    本章所用的所有代碼會在下面貼出

  2. 將web項目導出爲war包,上傳到服務器
    順便說一下福佳JSP的操作,個人感覺界面不太友好:
    首先,登錄成功後會進入下面的頁面,然後點擊 【虛擬機主機管理】
    虛
    然後點擊【jsp控制面板】
    jspCtor
    然後就會看到操作菜單:
    菜單
    接着
    這裏寫圖片描述這裏寫圖片描述
    最後點擊【安裝部署】即可

  3. 在上述步驟都成功完成後,在公衆平臺的開發基礎配置點擊提交–>確認之後,就會提示成功的字樣
    commit

當上述的工作準備好之後,就可以開發了
歡迎查看消息處理篇章

======================================
相關代碼:

/**
    Servlet,本章主要關心的是doGet方法,暫時不用關心doPost
*/

import java.io.IOException;
import java.io.PrintWriter;
import java.util.Arrays;
import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.log4j.Logger;
import com.avc.log.Log4jTest;
import com.avc.service.CoreService;
import com.avc.util.SHA1;

public class WeiXinServlet extends HttpServlet {
    private static final long serialVersionUID = 1L;

    private static final String TOKEN="xxxxxxxx"; //你自己在上面自定義的token
    private static String token=TOKEN;

    public WeiXinServlet() {
        super();
    }

    public void init(ServletConfig config) throws ServletException {
    }

    public void destroy() {
    }

    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        Logger logger = Logger.getLogger(Log4jTest.class);
        PrintWriter out =  response.getWriter();
        String signature = request.getParameter("signature");
        String timestamp = request.getParameter("timestamp"); 
        String nonce = request.getParameter("nonce");
        String echostr = request.getParameter("echostr");
        logger.info("signature:" + signature + ", timestamp:" + timestamp + ", nonce:" + nonce + ", echostr:" + echostr);

        //對傳入的三個參數 將token、timestamp、nonce進行字典排序
        String str[]= {token,timestamp,nonce};
        Arrays.sort(str);
        //拼接字符串的時候順序不能變
        String line=str[0]+str[1]+str[2];
        String signature2 = new SHA1().getDigestOfString(line.getBytes());
        logger.info("signature2:---"+signature2);
        // 一定要不區分大小寫
        if(signature.equalsIgnoreCase(signature2)) {
            //比對成功,則將隨機字符串原樣返回
            out.write(echostr);
        }else {
            out.write("error");
        }
        out.flush();
        out.close();
    }

    @Override
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        /*dosomething*/
    }

}

===================我是分割線============================
web.xml配置:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
        xmlns="http://xmlns.jcp.org/xml/ns/javaee" 
        xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>weixin</display-name>
  <servlet>
    <servlet-name>WeiXinServlet</servlet-name>
    <servlet-class>com.avc.wx.WeiXinServlet</servlet-class>
  </servlet>

  <servlet-mapping>
    <servlet-name>WeiXinServlet</servlet-name>
    <url-pattern>/WeiXinServlet</url-pattern>
  </servlet-mapping>

  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>
/*
     SHA1加密代碼(我這也是在網上找的,在這隻能爲原作者帶一炷香,233333):
*/
public class SHA1 {
    private final int[] abcde = { 0x67452301, 0xefcdab89, 0x98badcfe,0x10325476, 0xc3d2e1f0 };
    // 摘要數據存儲數組
    private int[] digestInt = new int[5];
    // 計算過程中的臨時數據存儲數組
    private int[] tmpData = new int[80];

    // 計算sha-1摘要
    private int process_input_bytes(byte[] bytedata) {
        // 初試化常量
        System.arraycopy(abcde, 0, digestInt, 0, abcde.length);
        // 格式化輸入字節數組,補10及長度數據
        byte[] newbyte = byteArrayFormatData(bytedata);
        // 獲取數據摘要計算的數據單元個數
        int MCount = newbyte.length / 64;
        // 循環對每個數據單元進行摘要計算
        for (int pos = 0; pos < MCount; pos++) {
            // 將每個單元的數據轉換成16個整型數據,並保存到tmpData的前16個數組元素中
            for (int j = 0; j < 16; j++) {
                tmpData[j] = byteArrayToInt(newbyte, (pos * 64) + (j * 4));
            }
            // 摘要計算函數
            encrypt();
        }
        return 20;
    }

    // 格式化輸入字節數組格式
    private byte[] byteArrayFormatData(byte[] bytedata) {
        // 補0數量
        int zeros = 0;
        // 補位後總位數
        int size = 0;
        // 原始數據長度
        int n = bytedata.length;
        // 模64後的剩餘位數
        int m = n % 64;
        // 計算添加0的個數以及添加10後的總長度
        if (m < 56) {
            zeros = 55 - m;
            size = n - m + 64;
        } else if (m == 56) {
            zeros = 63;
            size = n + 8 + 64;
        } else {
            zeros = 63 - m + 56;
            size = (n + 64) - m + 64;
        }
        // 補位後生成的新數組內容
        byte[] newbyte = new byte[size];
        // 複製數組的前面部分
        System.arraycopy(bytedata, 0, newbyte, 0, n);
        // 獲得數組Append數據元素的位置
        int l = n;
        // 補1操作
        newbyte[l++] = (byte) 0x80;
        // 補0操作
        for (int i = 0; i < zeros; i++) {
            newbyte[l++] = (byte) 0x00;
        }
        // 計算數據長度,補數據長度位共8字節,長整型
        long N = (long) n * 8;
        byte h8 = (byte) (N & 0xFF);
        byte h7 = (byte) ((N >> 8) & 0xFF);
        byte h6 = (byte) ((N >> 16) & 0xFF);
        byte h5 = (byte) ((N >> 24) & 0xFF);
        byte h4 = (byte) ((N >> 32) & 0xFF);
        byte h3 = (byte) ((N >> 40) & 0xFF);
        byte h2 = (byte) ((N >> 48) & 0xFF);
        byte h1 = (byte) (N >> 56);
        newbyte[l++] = h1;
        newbyte[l++] = h2;
        newbyte[l++] = h3;
        newbyte[l++] = h4;
        newbyte[l++] = h5;
        newbyte[l++] = h6;
        newbyte[l++] = h7;
        newbyte[l++] = h8;
        return newbyte;
    }

    private int f1(int x, int y, int z) {
        return (x & y) | (~x & z);
    }

    private int f2(int x, int y, int z) {
        return x ^ y ^ z;
    }

    private int f3(int x, int y, int z) {
        return (x & y) | (x & z) | (y & z);
    }

    private int f4(int x, int y) {
        return (x << y) | x >>> (32 - y);
    }

    // 單元摘要計算函數
    private void encrypt() {
        for (int i = 16; i <= 79; i++) {
            tmpData[i] = f4(tmpData[i - 3] ^ tmpData[i - 8] ^ tmpData[i - 14]
                    ^ tmpData[i - 16], 1);
        }
        int[] tmpabcde = new int[5];
        for (int i1 = 0; i1 < tmpabcde.length; i1++) {
            tmpabcde[i1] = digestInt[i1];
        }
        for (int j = 0; j <= 19; j++) {
            int tmp = f4(tmpabcde[0], 5)
                    + f1(tmpabcde[1], tmpabcde[2], tmpabcde[3]) + tmpabcde[4]
                    + tmpData[j] + 0x5a827999;
            tmpabcde[4] = tmpabcde[3];
            tmpabcde[3] = tmpabcde[2];
            tmpabcde[2] = f4(tmpabcde[1], 30);
            tmpabcde[1] = tmpabcde[0];
            tmpabcde[0] = tmp;
        }
        for (int k = 20; k <= 39; k++) {
            int tmp = f4(tmpabcde[0], 5)
                    + f2(tmpabcde[1], tmpabcde[2], tmpabcde[3]) + tmpabcde[4]
                    + tmpData[k] + 0x6ed9eba1;
            tmpabcde[4] = tmpabcde[3];
            tmpabcde[3] = tmpabcde[2];
            tmpabcde[2] = f4(tmpabcde[1], 30);
            tmpabcde[1] = tmpabcde[0];
            tmpabcde[0] = tmp;
        }
        for (int l = 40; l <= 59; l++) {
            int tmp = f4(tmpabcde[0], 5)
                    + f3(tmpabcde[1], tmpabcde[2], tmpabcde[3]) + tmpabcde[4]
                    + tmpData[l] + 0x8f1bbcdc;
            tmpabcde[4] = tmpabcde[3];
            tmpabcde[3] = tmpabcde[2];
            tmpabcde[2] = f4(tmpabcde[1], 30);
            tmpabcde[1] = tmpabcde[0];
            tmpabcde[0] = tmp;
        }
        for (int m = 60; m <= 79; m++) {
            int tmp = f4(tmpabcde[0], 5)
                    + f2(tmpabcde[1], tmpabcde[2], tmpabcde[3]) + tmpabcde[4]
                    + tmpData[m] + 0xca62c1d6;
            tmpabcde[4] = tmpabcde[3];
            tmpabcde[3] = tmpabcde[2];
            tmpabcde[2] = f4(tmpabcde[1], 30);
            tmpabcde[1] = tmpabcde[0];
            tmpabcde[0] = tmp;
        }
        for (int i2 = 0; i2 < tmpabcde.length; i2++) {
            digestInt[i2] = digestInt[i2] + tmpabcde[i2];
        }
        for (int n = 0; n < tmpData.length; n++) {
            tmpData[n] = 0;
        }
    }

    // 4字節數組轉換爲整數
    private int byteArrayToInt(byte[] bytedata, int i) {
        return ((bytedata[i] & 0xff) << 24) | ((bytedata[i + 1] & 0xff) << 16)
                | ((bytedata[i + 2] & 0xff) << 8) | (bytedata[i + 3] & 0xff);
    }

    // 整數轉換爲4字節數組
    private void intToByteArray(int intValue, byte[] byteData, int i) {
        byteData[i] = (byte) (intValue >>> 24);
        byteData[i + 1] = (byte) (intValue >>> 16);
        byteData[i + 2] = (byte) (intValue >>> 8);
        byteData[i + 3] = (byte) intValue;
    }

    // 將字節轉換爲十六進制字符串
    private static String byteToHexString(byte ib) {
        char[] Digit = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A',
                'B', 'C', 'D', 'E', 'F' };
        char[] ob = new char[2];
        ob[0] = Digit[(ib >>> 4) & 0X0F];
        ob[1] = Digit[ib & 0X0F];
        String s = new String(ob);
        return s;
    }

    // 將字節數組轉換爲十六進制字符串
    private static String byteArrayToHexString(byte[] bytearray) {
        String strDigest = "";
        for (int i = 0; i < bytearray.length; i++) {
            strDigest += byteToHexString(bytearray[i]);
        }
        return strDigest;
    }

    // 計算sha-1摘要,返回相應的字節數組
    public byte[] getDigestOfBytes(byte[] byteData) {
        process_input_bytes(byteData);
        byte[] digest = new byte[20];
        for (int i = 0; i < digestInt.length; i++) {
            intToByteArray(digestInt[i], digest, i * 4);
        }
        return digest;
    }

    // 計算sha-1摘要,返回相應的十六進制字符串
    public String getDigestOfString(byte[] byteData) {
        return byteArrayToHexString(getDigestOfBytes(byteData));
    }

    public static void main(String[] args) {
        String data = "123456";
        System.out.println(data);
        String digest = new SHA1().getDigestOfString(data.getBytes()).toLowerCase();
        System.out.println(digest);
    }
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章