微信支付body中文乱码的情况

最后解决的办法就是把发送的xml文件设置一下编码即可:data = new String(data.getBytes(), "utf-8");

当时的情况是:

项目是微信支付模式一扫码后显示package info not match special pay url

在网上查了  说是prepay_id参数的问题,经排查是上一步统一下单没用正确返回prepay_id导致下一步参数不全的情况;

所以排查统一下单方法,经过测试发现body中不带中文支付正常,带中文则会造成签名不一致的情况;

最后成功的方法就是把发送的xml文件设置编码即可;

统一下单方法:

    public static String unifiedOrder(String body, String openid
            ,String out_trade_no, String spbill_create_ip, String total_fee, String trade_type, String product_id) {
        String nonce_str = WeixinPaymentUtil.randomStr();
        total_fee = Double.valueOf(total_fee) * 100 + "";
        total_fee = total_fee.substring(0, total_fee.lastIndexOf("."));
        Map<String, String> map = new HashMap<String, String>();
        map.put("appid", APPID);
        map.put("body", body);
        map.put("mch_id", MCH_ID);
        map.put("nonce_str", nonce_str);
        map.put("notify_url", NOTIFY_URL);
        map.put("openid", openid);
        map.put("out_trade_no", out_trade_no);
        map.put("spbill_create_ip", spbill_create_ip);
        map.put("total_fee", total_fee);
        map.put("trade_type", trade_type);
        map.put("product_id", product_id);
//        System.out.println("+++++++++++++++++++++++"+map);
        String sign = WeixinPaymentUtil.sign(map, true);
        String data = ""
                        +"<xml>"
                        +"<appid>"+APPID+"</appid>"
                        +"<body>"+body+"</body>"
                        +"<mch_id>"+MCH_ID+"</mch_id>"
                        +"<nonce_str>"+nonce_str+"</nonce_str>"
                        +"<notify_url>"+NOTIFY_URL+"</notify_url>"
                        +"<openid>"+openid+"</openid>"
                        +"<out_trade_no>"+out_trade_no+"</out_trade_no>"
                        +"<spbill_create_ip>"+spbill_create_ip+"</spbill_create_ip>"
                        +"<total_fee>"+total_fee+"</total_fee>"
                        +"<trade_type>"+trade_type+"</trade_type>"
                        +"<product_id>"+product_id+"</product_id>"
                        +"<sign>"+sign+"</sign>"
                        +"</xml>";

        try {
            data = new String(data.getBytes(), "utf-8");
        } catch (UnsupportedEncodingException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        String result = WeixinPaymentUtil.post("https://api.mch.weixin.qq.com/pay/unifiedorder", data);
//        System.out.println("----------------++"+result);
        String return_code = WeixinUtil.getStrFromXml(result, "/xml/return_code");

        if ("SUCCESS".equals(return_code)) {
            return WeixinUtil.getStrFromXml(result, "/xml/prepay_id");
        } else {
            return "";
        }
    }

之前被误导较多时间的方法:

单独编码body的情况会造成支付页面的产品描述是编码过的字节码,而支付成功后微信返回的产品信息是中文的的情况;

当时代码是这样编写的:

body = MD5Util.MD5Encoding(body);
import java.security.MessageDigest;

public class MD5Util {private static final char hexDigits1[] = {‘0‘, ‘1‘, ‘2‘, ‘3‘, ‘4‘, ‘5‘, ‘6‘, ‘7‘, ‘8‘, ‘9‘, ‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘};

   //重要的就是这里,要调这个方法签名才可以
    public static String MD5Encoding(String s) {
        byte[] btInput = null;
        try {
            btInput = s.getBytes("UTF-8");
        }catch (Exception e){
        }
        return MD5(btInput, 32);
    }

    public static String MD5(String s) {
        byte[] btInput = s.getBytes();
        return MD5(btInput, 32);
    }

    public static String MD5_16(String str) {
        byte[] btInput = str.getBytes();
        return MD5(btInput, 16);
    }

    private static String MD5(byte[] btInput, int length) {
        try {
            // 获得MD5摘要算法的 MessageDigest 对象
            MessageDigest mdInst = MessageDigest.getInstance("MD5");
            // MessageDigest mdInst = MessageDigest.getInstance("SHA-1");
            // 使用指定的字节更新摘要
            mdInst.update(btInput);
            // 获得密文
            byte[] md = mdInst.digest();
            // 把密文转换成十六进制的字符串形式
            int j = md.length;
            char str[] = new char[j * 2];
            int k = 0;
            for (byte byte0 : md) {
                str[k++] = hexDigits1[byte0 >>> 4 & 0xf];
                str[k++] = hexDigits1[byte0 & 0xf];
            }
            String result = new String(str);
            return length == 16 ? result.substring(8, 24) : result;
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
    }

}

原文地址:https://www.cnblogs.com/MuZi0627/p/10674807.html

时间: 2024-10-07 18:48:02

微信支付body中文乱码的情况的相关文章

微信自定义菜单中文乱码问题

文章转自 <微信自定义菜单中文乱码问题> 问题:微信自定义菜单开发者模式,菜单中文出现乱码 例: $menu = array( 'button' => array( array( 'type'=>'view', 'name'=>'百度', 'url'=>'https://www.baidu.com', ), ), ); 调用微信自定义菜单创建接口:https://api.weixin.qq.com/cgi-bin/menu/create?access_token=ACC

Linux下关于解决JavaSwing中文乱码的情况

1.下载simsun.ttc(宋体).http://download.csdn.net/detail/lazy_p/4436971 2.linux中跳转到JDK安装目录 ..../jre/lib/fonts 3.sudo mkdir fallback  然后将Windows所拷贝的字体放到fallback中 相关解决网址 http://www.linuxidc.com/Linux/2009-10/21991.htm http://www.cnblogs.com/zhangyongli2011/a

使用myeclipse出现中文乱码的情况以及解决办法

一:在jsp页面使用中文在浏览器中显示的时候出现乱码,解决问题的办法: 1)直接在<mete>标签中修改charset属性为"utf-8"或者为"gb2312"可以解决中文乱码问题. 2)因为jsp页面是在编译器中编译成.class文件之后在经过tomcat服务器输出在浏览器中时需要解析server.xml配置文件,所以 可以把此配置文件中的<connector />标签中的URIEncoding="UTF-8"; 二:h

python3 使用matplotlib画图出现中文乱码的情况

python3使用matplotlib画图,因python3默认使用中unicode编码,所以在写代码时不再需要写 plt.xlabel(u'人数'),而是直接写plt.xlabel('人数'). 注意: 在有中文的地方加上中文相关的字体,不然会因为没有字体显示成放框,因为默认的使用的字体里没有中文的,使用例子如下: # -*- coding: utf-8 -*- import pandas as pd import numpy as np from pandas import Series,D

使用HttpWebRequest和HttpWebResponse时接收数据中文乱码的情况

今天在调试一个get请求的接口的时候发现HttpWebResponse方法接收数据的时候,中文出现乱码的情况. 原因是格式编码转码的问题. 原来自从Windows 2000之后的操作系统在文件处理时默认编码采用Unicode,所以.Net 的文件默认编码也是Unicode.除非另外指定,StreamReader 的默认编码为 Unicode,而不是当前系统的 ANSI 代码页.但是文档大部分还是以ANSI编码储存,中文文本使用的是gb2312,所以才造成中文乱码的状况,也就是说在读取文本的时候要

网络编程 --安装wkhtmltopdf出现中文乱码的情况

1 首先下载安装包 2安装依赖文件apt-get install libxfont1 xfonts-encodings xfonts-utils xfonts-base xfonts-75dpi sudo cp wkhtmltox/bin/wkhtmltopdf /usr/bin/ sudo chown root:root /usr/bin/wkhtmltopdf sudo chmod +x /usr/bin/wkhtmltopdf 3在实际使用的时候还是出现了中文乱码的问题 于是将自己的/us

微信开发模式无法验证以及返回消息中文乱码的情况

一开始我也纠结了这个问题很久,从微信公众平台上下载下来的例子不是utf-8格式的,但是却可以验证通过. 此时修改加入中文,返回消息会乱码,改成utf-8编码就显示正常了. 再来验证会不通过. 我一直纠结这个问题,其实没必要,只要第一次验证通过即可,后面修改成utf-8编码也不影响公众平台与服务号交互.

ajax请求参数为中文乱码的情况

前提是ajax请求传递参数对象到后台,对象中的某个参数的值为中文,到后台之后出现乱码,导致报错.问题解决如下: rest层:

关于python的requests库抓取源文件中文乱码的情况

1 import requests 2 3 html=requests.get('http://www.12306.cn/mormhweb/') 4 5 print html.text 刚开始是这么写的,运行时一直弹出错误 之后加上了 html.encoding='utf-8' 完美解决