微信支付(退款為例)

微信支付退款的官方文檔

https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=9_4

導(dǎo)入證書

微信退款是需要證書的
https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=4_3

以在windows為例根暑,解壓之后的文件

雙擊.p12結(jié)尾的文件笆檀,導(dǎo)入證書,會要求輸入密碼忘嫉,密碼就是商戶ID,注意一定要是在自己的商戶平臺上下載的證書木蹬,不然會提示密碼錯誤匈勋。


導(dǎo)入成功

Java代碼

封裝了一個RefundVo對象,字段設(shè)定根據(jù)官方文檔

public class RefundVo {

    private String appid;
    private String mchId;
    private String deviceInfo;
    private String nonceStr;
    private String sign;
    private String signType;
    private String transactionId;
    private String outTradeNo;
    private String outRefundNo;
    private int totalFee;
    private int refundFee;
    private String refundFeeType;
    private String opUserId;
    private String refundAccount;
    //省略get set方法
}

設(shè)置各個參數(shù)

String key = "xxxxxxx";
RefundVo vo = new RefundVo();
vo.setOutTradeNo("2016006092770333");//商戶訂單號(微信訂單號二選一即可)
vo.setAppid("appid");
vo.setMchId("mchid");
vo.setOutRefundNo("2016006092770333");//某付款的定單號
vo.setTotalFee(1);//訂單金額
vo.setRefundFee(1);退款金額
vo.setOpUserId("1410417402");//默認(rèn)商戶號
String certificatePath = "E:/工作/cert/apiclient_cert.p12";//證書的絕對路徑
refund(key 纱意,vo,certificatePath );

封裝退款的結(jié)果

public class RefundResult {

    private String returnCode;
    private String returnMsg;
    private String resultCode;
    private String errCode;
    private String errCodeDes;
    private String appid;
    private String mchId;
    private String deviceInfo;
    private String nonceStr;
    private String sign;
    private String transactionId;
    private String outTradeNo;
    private String outRefundNo;
    private String refundId;
    /**
     * ORIGINAL—原路退款
     * BALANCE—退回到余額
     */
    private String refundChannel;
    /**
     * 申請退款金額
     */
    private int refundFee;
    /**
     * 退款金額
     */
    private int settlementRefundFee;
    private int totalFee;
    private int settlementTotalFee;
    private String feeType;
    private int cashFee;
    private int cashRefundFee;
 //省略set get方法
}

退款的方法

public RefundResult refund(String key,RefundVo vo,String certificatePath){
    RefundResult refundResult = new RefundResult();
    vo.setNonceStr(RandomUtil.wechatRandomString());//設(shè)置隨機字符串
    vo.setSign(new RefundBuilder().build(vo));//設(shè)置簽名
    check(vo);//檢查參數(shù)
    //將參數(shù)放入Map中
    Map<String,String> params=new RefundBuilder().getParams(vo);
    //轉(zhuǎn)成Xml形式的String
    String xml=XmlParseUtils.assembleXml(params);
    /**
        <xml>
           <appid>wx2421b1c4370ec43b</appid>
           <mch_id>10000100</mch_id>
           <nonce_str>6cefdb308e1e2e8aabd48cf79e546a02</nonce_str>
           <op_user_id>10000100</op_user_id>
           <out_refund_no>1415701182</out_refund_no>
           <out_trade_no>1415757673</out_trade_no>
           <refund_fee>1</refund_fee>
           <total_fee>1</total_fee>
           <transaction_id></transaction_id>
           <sign>FE56DD4AA85C0EECA82C35595A69E153</sign>
        </xml>
    **/
    //調(diào)用微信接口
    String  result = HttpClientUtils.executeBySslPost(refundURL,xml,vo.getCertificatePath(),vo.getRefundVo().getMchId());//發(fā)送http請求
    //接收xml解析的結(jié)果
    Map<String, String> map = new HashMap<String,String>();
    //返回結(jié)果為xml形式,轉(zhuǎn)成map然后封裝成refundResult即可
    map = XmlParseUtils.parseXml(result);
    refundResult = new RefundResultBuilder().build(map);
}

參數(shù)檢查

private void check(RefundVo vo){
       
        if (VerifyUtils.isEmpty(vo.getAppid())) {
             throw new PayException("申請退款參數(shù)為空——appid");
        }
        if (VerifyUtils.isEmpty(vo.getMchId())) {
            throw new PayException("申請退款參數(shù)為空——mch_id");
        }
        if (VerifyUtils.isEmpty(vo.getNonceStr())) {
            throw new PayException("申請退款參數(shù)為空——nonce_str");
        }
        if (VerifyUtils.isEmpty(vo.getSign())) {
            throw new PayException("申請退款參數(shù)為空——sign");
        }
        if (VerifyUtils.isEmpty(vo.getTransactionId()) && VerifyUtils.isEmpty(vo.getOutTradeNo())) {
            throw new PayException("申請退款參數(shù)為空——transaction_id或者out_trade_no");
        }
        if (VerifyUtils.isEmpty(vo.getOutRefundNo())) {
            throw new PayException("申請退款參數(shù)為空——out_refund_no");
        }
        if (VerifyUtils.isEmpty(vo.getTotalFee())) {
            throw new PayException("申請退款參數(shù)為空——total_fee");
        }
        if (VerifyUtils.isEmpty(vo.getRefundFee())) {
            throw new PayException("申請退款參數(shù)為空——refund_fee");
        }
        if (VerifyUtils.isEmpty(vo.getOpUserId())) {
            throw new PayException("申請退款參數(shù)為空——op_user_id");
        }
    }

Map構(gòu)建

    public class RefundBuilder extends SignBuilder {

    @Override
    public Map<String, String> getParams(Refund vo) {
        
        Map<String,String> params = new HashMap<String, String>();
        if(VerifyUtils.isNotEmpty(vo.getAppid())){
            params.put("appid",vo.getAppid());
        }
        if (VerifyUtils.isNotEmpty(vo.getMchId())) {
            params.put("mch_id", vo.getMchId());
        }
        if (VerifyUtils.isNotEmpty(vo.getDeviceInfo())) {
            params.put("device_info", vo.getDeviceInfo());
        }
        if(VerifyUtils.isNotEmpty(vo.getNonceStr())){
            params.put("nonce_str",vo.getNonceStr());
        }
        if (VerifyUtils.isNotEmpty(vo.getSign())) {
            params.put("sign", vo.getSign());
        }
        if (VerifyUtils.isNotEmpty(vo.getSignType())) {
            params.put("sign_type", vo.getSignType());
        }
        if (VerifyUtils.isNotEmpty(vo.getTransactionId())) {
            params.put("transaction_id", vo.getTransactionId());
        }
        if (VerifyUtils.isNotEmpty(vo.getOutTradeNo())) {
            params.put("out_trade_no", vo.getOutTradeNo());
        }
        if (VerifyUtils.isNotEmpty(vo.getOutRefundNo())) {
            params.put("out_refund_no", vo.getOutRefundNo());
        }
        if (VerifyUtils.isNotEmpty(vo.getTotalFee())) {
            params.put("total_fee",Integer.toString(vo.getTotalFee()));
        }
        if (VerifyUtils.isNotEmpty(vo.getRefundFee())) {
            params.put("refund_fee", Integer.toString(vo.getRefundFee()));
        }
        if (VerifyUtils.isNotEmpty(vo.getRefundFeeType())) {
            params.put("refund_fee_type",vo.getRefundFeeType());
        }
        if (VerifyUtils.isNotEmpty(vo.getOpUserId())) {
            params.put("op_user_id",vo.getOpUserId());
        }
        if (VerifyUtils.isNotEmpty(vo.getRefundAccount())) {
            params.put("refund_account",vo.getRefundAccount());
        }
        return params;
    }

}

http執(zhí)行的方法

public static String executeBySslPost(String url, String body,String certificatePath,String password) throws Exception {
        String result = "";
        //商戶id
        //指定讀取證書格式為PKCS12
        KeyStore keyStore = KeyStore.getInstance("PKCS12");
        //讀取本機存放的PKCS12證書文件
        FileInputStream instream = new FileInputStream(new File(certificatePath));
        try {
            //指定PKCS12的密碼(商戶ID)
            keyStore.load(instream, password.toCharArray());
        } finally {
            instream.close();
        }
        SSLContext sslcontext = SSLContexts.custom().loadKeyMaterial(keyStore, password.toCharArray()).build();
        //指定TLS版本
        SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(sslcontext, new String[]{"TLSv1"}, null, SSLConnectionSocketFactory.BROWSER_COMPATIBLE_HOSTNAME_VERIFIER);
        //設(shè)置httpclient的SSLSocketFactory
        CloseableHttpClient httpclient = HttpClients.custom().setSSLSocketFactory(sslsf).build();
        try {
            HttpPost httppost = new HttpPost(url);
            StringEntity reqEntity = new StringEntity(body, "UTF-8");
            httppost.setEntity(reqEntity);

            System.out.println("Executing request: " + httppost.getRequestLine());
            CloseableHttpResponse response = null;
            try {
                response = httpclient.execute(httppost);
                result = EntityUtils.toString(response.getEntity(),"UTF-8");
            } catch (Exception e) {
                e.printStackTrace();
                log.error("請求失敗", e);
                throw new RuntimeException(e);
            } finally {
                try {
                    response.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
            log.error("請求失敗", e);
            throw new RuntimeException(e);
        } finally {
            try {
                httpclient.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return result;
    }

最終的返回結(jié)果

System.out.println(JSON.toJSONString(result,true));

歡迎大家討論~我的博客地址 http://blog.doublez.cc

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末鲸阔,一起剝皮案震驚了整個濱河市妇穴,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌隶债,老刑警劉巖腾它,帶你破解...
    沈念sama閱讀 211,884評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異死讹,居然都是意外死亡瞒滴,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,347評論 3 385
  • 文/潘曉璐 我一進店門赞警,熙熙樓的掌柜王于貴愁眉苦臉地迎上來妓忍,“玉大人,你說我怎么就攤上這事愧旦∈榔剩” “怎么了?”我有些...
    開封第一講書人閱讀 157,435評論 0 348
  • 文/不壞的土叔 我叫張陵笤虫,是天一觀的道長旁瘫。 經(jīng)常有香客問我祖凫,道長,這世上最難降的妖魔是什么酬凳? 我笑而不...
    開封第一講書人閱讀 56,509評論 1 284
  • 正文 為了忘掉前任惠况,我火速辦了婚禮,結(jié)果婚禮上宁仔,老公的妹妹穿的比我還像新娘稠屠。我一直安慰自己,他們只是感情好翎苫,可當(dāng)我...
    茶點故事閱讀 65,611評論 6 386
  • 文/花漫 我一把揭開白布权埠。 她就那樣靜靜地躺著,像睡著了一般煎谍。 火紅的嫁衣襯著肌膚如雪攘蔽。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,837評論 1 290
  • 那天粱快,我揣著相機與錄音,去河邊找鬼叔扼。 笑死事哭,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的瓜富。 我是一名探鬼主播鳍咱,決...
    沈念sama閱讀 38,987評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼与柑!你這毒婦竟也來了谤辜?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,730評論 0 267
  • 序言:老撾萬榮一對情侶失蹤价捧,失蹤者是張志新(化名)和其女友劉穎丑念,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體结蟋,經(jīng)...
    沈念sama閱讀 44,194評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡脯倚,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,525評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了嵌屎。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片推正。...
    茶點故事閱讀 38,664評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖宝惰,靈堂內(nèi)的尸體忽然破棺而出植榕,到底是詐尸還是另有隱情,我是刑警寧澤尼夺,帶...
    沈念sama閱讀 34,334評論 4 330
  • 正文 年R本政府宣布尊残,位于F島的核電站炒瘸,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏夜郁。R本人自食惡果不足惜什燕,卻給世界環(huán)境...
    茶點故事閱讀 39,944評論 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望竞端。 院中可真熱鬧屎即,春花似錦、人聲如沸事富。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,764評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽统台。三九已至雕擂,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間贱勃,已是汗流浹背井赌。 一陣腳步聲響...
    開封第一講書人閱讀 31,997評論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留贵扰,地道東北人仇穗。 一個月前我還...
    沈念sama閱讀 46,389評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像戚绕,于是被迫代替她去往敵國和親纹坐。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,554評論 2 349

推薦閱讀更多精彩內(nèi)容