Android开发之在Android项目里集成调用支付宝支付开发的代码实现
如今移动支付比较火,尤其是在中国的市场。移动支付也称为手机支付,就是允许用户使用其移动终端(通常是手机)对所消费的商品或服务进行账务支付的一种服务方式。单位或个人通过移动设备、互联网或者近距离传感直接或间接向银行金融机构发送支付指令产生货币支付与资金转移行为,从而实现移动支付功能。移动支付将终端设备、互联网、应用提供商以及金融机构相融合,为用户提供货币支付、缴费等金融业务。
谈到移动支付,不得不说阿里旗下的蚂蚁金融的支付以及腾讯旗下的微信支付。那么现在在就谈谈如何android项目里集成调用支付宝支付开发的实现方式。
首先访问支付宝的官方平台蚂蚁金服开放平台,网址为:https://open.alipay.com/platform/home.htm。然后用自己的支付宝登录并认证为开发者,接着在平台首页依次点击“文档中心”进入查阅相关的android集成的开发文档,接着下载集成支付宝的sdk和demo,下载地址为:https://gw.alipayobjects.com/os/rmsportal/vpzjqovjuyvreudlwyxl.zip。
android项目集成调用支付宝的流程
流程说明(以android平台为例):
第4步:调用支付接口:此消息就是本接口所描述的开发包提供的支付对象paytask,将商户签名后的订单信息传进pay方法唤起支付宝收银台。
第5步:支付请求:手机支付宝支付开发包将会按照商户客户端提供的请求参数发送支付请求。
第8步:接口返回支付结果:商户客户端在第4步中调用的支付接口,会返回最终的支付结果(即同步通知)。
第12步:异步发送支付通知:手机支付宝支付服务器端发送异步通知消息给商户服务器端(备注:第12步一定发生在第6步之后,但不一定晚于7~11步)。
1.构造订单数据并签名
商户服务器端根据手机支付宝支付开发包的接口规则,通过程序生成得到签名结果及要传输给手机支付宝支付开发包的数据集合。签名相关的公私钥生成及配置规则。
2.发送请求数据
把构造完成的数据集合传递给手机支付宝支付开发包。
3.手机支付宝支付开发包对请求数据进行处理
手机支付宝支付开发包将请求数据根据业务规则包装后传递给手机支付宝支付服务器端,服务器端得到这些集合后,会先进行安全校验等验证,一系列验证通过后便会处理完成这次发送过来的数据请求。
4.返回处理的结果数据
(1)对于处理完成的交易,支付宝会以两种方式把数据分别反馈给商户客户端和商户服务器端。在手机客户端上,手机支付宝支付开发包直接把处理的数据结果反馈给商户客户端;
(2)在服务器端上,手机支付宝支付服务器端主动发起通知,调用商户在请求时设定好的页面路径。
5.商户对获取的返回结果数据进行处理
商户在客户端同步通知接收模块或服务器端异步通知接收模块获取到支付宝返回的结果数据后,可以结合商户自身业务逻辑进行数据处理(如:订单更新、自动充值到会员账号中等)。同步通知结果仅用于结果展示,入库数据需以异步通知为准。
导入开发资源
将下载的alipaysdk-xxx.jar包放入商户应用工程的libs目录下,如下图。
修改manifest
在商户应用工程的androidmanifest.xml文件里面添加声明:
和权限声明:
alipaytask.java逻辑代码如下:
package com.fukaimei.alipay.task; import java.io.unsupportedencodingexception; import java.net.urlencoder; import java.text.simpledateformat; import java.util.date; import java.util.locale; import java.util.random; import android.app.activity; import android.app.alertdialog; import android.app.progressdialog; import android.content.context; import android.content.dialoginterface; import android.os.asynctask; import android.text.textutils; import android.widget.toast; import com.alipay.sdk.app.paytask; import com.fukaimei.alipay.bean.alipayconstants; import com.fukaimei.alipay.bean.payresult; import com.fukaimei.alipay.util.signutils; public class alipaytask extends asynctask { private static final string tag = "alipaytask"; private context mcontext; private progressdialog dialog; private int mtype; public alipaytask(context context, int type) { mcontext = context; mtype = type; } @override protected void onpreexecute() { if (textutils.isempty(alipayconstants.partner) || textutils.isempty(alipayconstants.rsa_private) || textutils.isempty(alipayconstants.seller)) { new alertdialog.builder(mcontext).settitle("警告").setmessage("需要配置partner | rsa_private| seller") .setpositivebutton("确定", new dialoginterface.onclicklistener() { public void onclick(dialoginterface dialoginterface, int i) { } }).show(); cancel(true); } else { dialog = progressdialog.show(mcontext, "提示", "正在启动支付宝..."); } } @override protected string doinbackground(string... params) { string orderinfo = getorderinfo(params[0], params[1], params[2]); // 特别注意,这里的签名逻辑需要放在服务端,切勿将私钥泄露在代码中! string sign = sign(orderinfo); try { // 仅需对sign 做url编码 sign = urlencoder.encode(sign, "utf-8"); } catch (unsupportedencodingexception e) { e.printstacktrace(); } //完整的符合支付宝参数规范的订单信息 final string payinfo = orderinfo + "&sign=\"" + sign + "\"&" + getsigntype(); // 构造paytask 对象 paytask alipay = new paytask((activity) mcontext); // 调用支付接口,获取支付结果 string result = alipay.pay(payinfo, false); return result; } @override protected void onpostexecute(string result) { if (dialog != null) { dialog.dismiss(); } payresult payresult = new payresult(result); // 支付宝返回此次支付结果及加签,建议对支付宝签名信息拿签约时支付宝提供的公钥做验签 string resultinfo = payresult.getresult(); toast.maketext(mcontext, "resultinfo=" + resultinfo, toast.length_short).show(); string resultstatus = payresult.getresultstatus(); // 判断resultstatus 为“9000”则代表支付成功,具体状态码代表含义可参考接口文档 if (textutils.equals(resultstatus, "9000")) { toast.maketext(mcontext, "支付宝支付成功", toast.length_short).show(); } else { // 判断resultstatus 为非“9000”则代表可能支付失败 // “8000”代表支付结果因为支付渠道原因或者系统原因还在等待支付结果确认,最终交易是否成功以服务端异步通知为准(小概率状态) if (textutils.equals(resultstatus, "8000")) { toast.maketext(mcontext, "支付宝支付结果确认中", toast.length_short).show(); } else { // 其他值就可以判断为支付失败,包括用户主动取消支付,或者系统返回的错误 toast.maketext(mcontext, "支付宝支付失败" + payresult.getresult(), toast.length_short).show(); } } // if (mtype == 1) { //intent intent = new intent(mcontext, taxresultactivity.class); //mcontext.startactivity(intent); // } } private string getorderinfo(string subject, string body, string price) { // 签约合作者身份id string orderinfo = "partner=" + "\"" + alipayconstants.partner + "\""; // 签约卖家支付宝账号 orderinfo += "&seller_id=" + "\"" + alipayconstants.seller + "\""; // 商户网站唯一订单号 orderinfo += "&out_trade_no=" + "\"" + getouttradeno() + "\""; // 商品名称 orderinfo += "&subject=" + "\"" + subject + "\""; // 商品详情 orderinfo += "&body=" + "\"" + body + "\""; // 商品金额 orderinfo += "&total_fee=" + "\"" + price + "\""; // 服务器异步通知页面路径 orderinfo += "¬ify_url=" + "\"" + "https://notify.msp.hk/notify.htm" + "\""; // 服务接口名称, 固定值 orderinfo += "&service=\"mobile.securitypay.pay\""; // 支付类型, 固定值 orderinfo += "&payment_type=\"1\""; // 参数编码, 固定值 orderinfo += "&_input_charset=\"utf-8\""; // 设置未付款交易的超时时间,默认30分钟,一旦超时,该笔交易就会自动被关闭。 // 取值范围:1m~15d。m-分钟,h-小时,d-天,1c-当天(无论交易何时创建,都在0点关闭)。 // 该参数数值不接受小数点,如1.5h,可转换为90m。 orderinfo += "&it_b_pay=\"30m\""; // extern_token为经过快登授权获取到的alipay_open_id,带上此参数用户将使用授权的账户进行支付 // orderinfo += "&extern_token=" + "\"" + extern_token + "\""; // 支付宝处理完请求后,当前页面跳转到商户指定页面的路径,可空 orderinfo += "&return_url=\"m.alipay.com\""; // 调用银行卡支付,需配置此参数,参与签名, 固定值 (需要签约《无线银行卡快捷支付》才能使用) // orderinfo += "&paymethod=\"expressgateway\""; return orderinfo; } private string getouttradeno() { simpledateformat format = new simpledateformat("mmddhhmmss", locale.getdefault()); date date = new date(); string key = format.format(date); random r = new random(); key = key + r.nextint(); key = key.substring(0, 15); return key; } private string sign(string content) { return signutils.sign(content, alipayconstants.rsa_private); } private string getsigntype() { return "sign_type=\"rsa\""; } }payresult.java逻辑代码如下:
package com.fukaimei.alipay.bean; import android.text.textutils; public class payresult { private string resultstatus; private string result; private string memo; public payresult(string rawresult) { if (textutils.isempty(rawresult)) { return; } string[] resultparams = rawresult.split(";"); for (string resultparam : resultparams) { if (resultparam.startswith("resultstatus")) { resultstatus = gatvalue(resultparam, "resultstatus"); } if (resultparam.startswith("result")) { result = gatvalue(resultparam, "result"); } if (resultparam.startswith("memo")) { memo = gatvalue(resultparam, "memo"); } } } @override public string tostring() { return "resultstatus={" + resultstatus + "};memo={" + memo + "};result={" + result + "}"; } private string gatvalue(string content, string key) { string prefix = key + "={"; return content.substring(content.indexof(prefix) + prefix.length(), content.lastindexof("}")); } /** * @return the resultstatus */ public string getresultstatus() { return resultstatus; } /** * @return the memo */ public string getmemo() { return memo; } /** * @return the result */ public string getresult() { return result; } }在alipayconstants里配置相关与支付宝签约的商家密钥和账号等,alipayconstants.java逻辑代码如下:
package com.fukaimei.alipay.bean; public class alipayconstants { // 商户pid public static final string partner = "这里配置商户pid"; // 商户收款账号 public static final string seller = "这里配置商户收款账号"; // 商户私钥,pkcs8格式 public static final string rsa_private = "这里配置商户私钥"; // 支付宝公钥 public static final string rsa_public = "这里配置支付宝公钥"; public static final int sdk_pay_flag = 1; public static final int sdk_check_flag = 2; }layout/activity_main.xml界面布局代码如下:
mainactivity.java逻辑代码如下:
package com.fukaimei.alipay; import android.os.bundle; import android.support.v7.app.appcompatactivity; import android.view.view; import android.view.view.onclicklistener; import android.widget.edittext; import com.fukaimei.alipay.task.alipaytask; public class mainactivity extends appcompatactivity implements onclicklistener { private static final string tag = "mainactivity"; private edittext et_goods_title; private edittext et_goods_desc; private edittext et_goods_price; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); et_goods_title = (edittext) findviewbyid(r.id.et_goods_title); et_goods_desc = (edittext) findviewbyid(r.id.et_goods_desc); et_goods_price = (edittext) findviewbyid(r.id.et_goods_price); findviewbyid(r.id.btn_alipay).setonclicklistener(this); } @override public void onclick(view v) { if (v.getid() == r.id.btn_alipay) { string title = et_goods_title.gettext().tostring(); string desc = et_goods_desc.gettext().tostring(); string price = et_goods_price.gettext().tostring(); new alipaytask(this, 0).execute(title, desc, price); } } }demo程序运行效果界面截图如下: