基本信息
源码名称:jsp 微信支付Demo
源码大小:3.55M
文件格式:.zip
开发语言:Java
更新时间:2016-05-11
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
/** * 微信公众平台开发模式(JAVA) SDK * (c) 2012-2013 ____′↘夏悸 <wmails@126.cn>, MIT Licensed * http://www.jeasyuicn.com/wechat */ package com.gson.web; import java.io.IOException; import java.util.HashMap; import java.util.Map; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.commons.lang.RandomStringUtils; import org.apache.commons.lang.StringUtils; import com.gson.WeChat; import com.gson.oauth.Pay; import com.gson.util.ConfKit; /** * 示例部分请根据自己实际情况修改 * @author L.cm * email: 596392912@qq.com * site: http://www.dreamlu.net * @date 2014-4-23 上午10:10:36 */ public class WeChatPayServlet extends HttpServlet { private static final long serialVersionUID = 4638321491356022766L; @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doPost(req, resp); } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { // 判断是否微信环境, 5.0 之后的支持微信支付 boolean isweixin = WeChat.isWeiXin(req); if (isweixin) { String productName = "测试商品001"; String total_fee = "100"; String orderid = "123456"; // package 参数------------------------------ // Map<String, String> params = new HashMap<String, String>(); // 对商品名截取, 去除空格 productName = productName.replaceAll(" ", ""); productName = productName.length() > 17 ? productName.substring(0, 17) "..." : productName; params.put("body", productName); //商品描述。 params.put("total_fee", total_fee); //订单总金额 params.put("fee_type", "1"); //现金支付币种,取值: 1 (人民币) params.put("out_trade_no", orderid); //商户系统内部的订单号 params.put("spbill_create_ip", getIp(req)); // ip // 参数 String timeStamp = System.currentTimeMillis() ""; String nonceStr = RandomStringUtils.random(8, "123456789"); // 8位随机数 String packagestring = Pay.getPackage(params); //对参数打包 String paySign = Pay.paySign(timeStamp, nonceStr, packagestring); // 构造签名 // appId req.setAttribute("appid", ConfKit.get("AppId")); // timeStamp req.setAttribute("timeStamp", timeStamp); // nonceStr req.setAttribute("nonceStr", nonceStr); // package req.setAttribute("package", packagestring); // paySign req.setAttribute("paySign", paySign); // 判定微信 req.setAttribute("isweixin", 1); req.getRequestDispatcher("/pay.jsp").forward(req, resp); } else { resp.sendRedirect("/index.jsp"); } } /** * 获取ip * @param request * @return */ public static String getIp(HttpServletRequest request) { if (request == null) return ""; String ip = request.getHeader("X-Requested-For"); if (StringUtils.isEmpty(ip) || "unknown".equalsIgnoreCase(ip)) { ip = request.getHeader("X-Forwarded-For"); } if (StringUtils.isEmpty(ip) || "unknown".equalsIgnoreCase(ip)) { ip = request.getHeader("Proxy-Client-IP"); } if (StringUtils.isEmpty(ip) || "unknown".equalsIgnoreCase(ip)) { ip = request.getHeader("WL-Proxy-Client-IP"); } if (StringUtils.isEmpty(ip) || "unknown".equalsIgnoreCase(ip)) { ip = request.getHeader("HTTP_CLIENT_IP"); } if (StringUtils.isEmpty(ip) || "unknown".equalsIgnoreCase(ip)) { ip = request.getHeader("HTTP_X_FORWARDED_FOR"); } if (StringUtils.isEmpty(ip) || "unknown".equalsIgnoreCase(ip)) { ip = request.getRemoteAddr(); } return ip; } }