java實現(xiàn)在線支付.docx_第1頁
java實現(xiàn)在線支付.docx_第2頁
java實現(xiàn)在線支付.docx_第3頁
java實現(xiàn)在線支付.docx_第4頁
java實現(xiàn)在線支付.docx_第5頁
已閱讀5頁,還剩4頁未讀, 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)

文檔簡介

java實現(xiàn)在線支付電子商務(wù)系統(tǒng)JAVA實現(xiàn)的基本流程如下: 客戶在系統(tǒng)內(nèi)下訂單 - 系統(tǒng)根據(jù)訂單生成支付寶接口url - 客戶通過url使用支付寶(網(wǎng)上銀行)付款 - 支付寶將客戶的付款完成信息發(fā)送給電子商務(wù)系統(tǒng) - 系統(tǒng)收到支付寶信息后確定客戶訂單已經(jīng)付款 - 進行發(fā)貨等后續(xù)流程。在開始下面的內(nèi)容之前,你要先有一個支付寶賬戶,如果要集成支付寶接口,你還必須申請開通服務(wù)(關(guān)于如何開通,可以直接到支付寶網(wǎng)站上申請).在服務(wù)開通后,支付寶會給你2個字符串編號:1個partnerId(合作伙伴ID),還有1個securityCode(安全碼).當你拿到這2個碼的時候就可以開始下面的內(nèi)容了.(1)如何調(diào)用支付寶接口?(將客戶的訂單信息按照既定的規(guī)則生成一個url跳轉(zhuǎn)到支付寶網(wǎng)站) 通過下面方法makeOrderAlipayUrl(HttpServletRequest httpRequest,Order order)的調(diào)用得到支付寶的url,然后進行跳轉(zhuǎn)(response.sendRedirect(url);).html view plaincopyprint?/*根據(jù)訂單生成支付寶接口URL.*paramhttpRequest*paramorder訂單實例*return*throwsException*/publicstaticStringmakeOrderAlipayUrl(HttpServletRequesthttpRequest,Orderorder)throwsExceptionHashMaphm=newHashMap();hm.put(_input_charset,httpRequest.getCharacterEncoding();/采用相同的編碼方式hm.put(body,您在上的訂單);/填寫在跳到支付寶頁面上顯示的付款內(nèi)容信息hm.put(discount,-5);/填寫折扣信息-5表示抵扣5元hm.put(logistics_fee,10);/物流費用hm.put(logistics_payment,BUYER_PAY);/物流費用支付人BUYER_PAY=買家支付物流費用hm.put(logistics_type,EXPRESS);/物流方式hm.put(notify_url,/notifyurl.jsp);/客戶付款后,支付寶調(diào)用的頁面hm.put(out_trade_no,order.getId();/外部交易號,最好具有唯一性,在獲取支付寶發(fā)來的付款信息時使用.hm.put(partner,partnerId);/partnerId(合作伙伴ID)hm.put(agent,partnerId);/partnerId(合作伙伴ID)hm.put(payment_type,1);/支付類型1=商品購買,2=服務(wù)購買,.hm.put(price,105.30);/訂單金額信息hm.put(quantity,1);/訂單商品數(shù)量,一般都是寫1,它是按照整個訂單包來計算hm.put(return_url,/ReturnUrl.jsp);/客戶付款成功后,顯示給客戶的頁面hm.put(seller_email,);/你的支付寶賬戶emailhm.put(service,create_direct_pay_by_user);/create_direct_pay_by_user=直接付款,trade_create_by_buyer擔保付款hm.put(subject,的訂單);/填寫在跳到支付寶頁面上顯示的付款標題信息StringpayGateway=/cooperate/gateway.do?;/跳轉(zhuǎn)到支付寶的url頭returnmakeUrl(hm,securityCode,httpRequest.getCharacterEncoding(),payGateway);/securityCode(安全碼)/*根據(jù)傳入的參數(shù)生成alipay的支付URL*paramhm參數(shù)值*paramsecurityCode安全碼*paramcharset編碼*parampayGateway支付寶gateway*return*/publicstaticStringmakeUrl(HashMaphm,StringsecurityCode,Stringcharset,StringpayGateway)throwsExceptionListkeys=newArrayList(hm.keySet();Collections.sort(keys);/支付寶要求參數(shù)必須按字母排序StringBuffercontent=newStringBuffer();for(inti=0;ikeys.size();i+)content.append(String)keys.get(i);content.append(=);content.append(String)hm.get(String)keys.get(i);if(i!=keys.size()-1)content.append(&);content.append(securityCode);Stringsign=md5(content.toString(),charset);content.delete(0,content.length();content.append(payGateway);for(inti=0;ikeys.size();i+)content.append(keys.get(i);content.append(=);content.append(URLEncoder.encode(String)hm.get(keys.get(i),charset);content.append(&);content.append(&sign_type=MD5);keys.clear();keys=null;returncontent.toString();/*生成md5編碼字符串.*paramstr源字符串*paramcharset編碼方式*return*/publicstaticStringmd5(Stringstr,Stringcharset)if(str=null)returnnull;charhexDigits=0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f;MessageDigestmd5MessageDigest=null;bytemd5Bytes=null;charmd5Chars=null;bytestrBytes=null;trystrBytes=str.getBytes(charset);md5MessageDigest=MessageDigest.getInstance(MD5);md5MessageDigest.update(strBytes);md5Bytes=md5MessageDigest.digest();intj=md5Bytes.length;md5Chars=newcharj*2;intk=0;for(inti=0;i4&0xf;md5Charsk+=hexDigitsmd5Byte&0xf;returnnewString(md5Chars);catch(NoSuchAlgorithmExceptione)/Log.output(e.toString(),Log.STD_ERR);returnnull;catch(UnsupportedEncodingExceptione)/Log.output(e.toString(),Log.STD_ERR);returnnull;finallymd5MessageDigest=null;strBytes=null;md5Bytes=null;/* * 根據(jù)訂單生成支付寶接口URL. * param httpRequest * param order 訂單實例 * return * throws Exception */ public static String makeOrderAlipayUrl(HttpServletRequest httpRequest,Order order) throws Exception HashMap hm = new HashMap(); hm.put(_input_charset,httpRequest.getCharacterEncoding();/采用相同的編碼方式 hm.put(body,您在上的訂單);/填寫在跳到支付寶頁面上顯示的付款內(nèi)容信息 hm.put(discount,-5);/填寫折扣信息 -5表示抵扣5元 hm.put(logistics_fee,10);/物流費用 hm.put(logistics_payment,BUYER_PAY);/物流費用支付人 BUYER_PAY=買家支付物流費用 hm.put(logistics_type,EXPRESS);/物流方式 hm.put(notify_url,/notifyurl.jsp);/客戶付款后,支付寶調(diào)用的頁面 hm.put(out_trade_no,order.getId();/外部交易號,最好具有唯一性,在獲取支付寶發(fā)來的付款信息時使用. hm.put(partner,partnerId);/partnerId(合作伙伴ID) hm.put(agent,partnerId);/partnerId(合作伙伴ID) hm.put(payment_type,1);/支付類型 1=商品購買,2=服務(wù)購買,. hm.put(price,105.30);/訂單金額信息 hm.put(quantity,1);/訂單商品數(shù)量,一般都是寫1,它是按照整個訂單包來計算 hm.put(return_url,/ReturnUrl.jsp);/客戶付款成功后,顯示給客戶的頁面 hm.put(seller_email,);/你的支付寶賬戶email hm.put(service,create_direct_pay_by_user);/create_direct_pay_by_user=直接付款,trade_create_by_buyer 擔保付款 hm.put(subject,的訂單);/填寫在跳到支付寶頁面上顯示的付款標題信息 String payGateway = /cooperate/gateway.do?;/跳轉(zhuǎn)到支付寶的url頭 return makeUrl(hm,securityCode,httpRequest.getCharacterEncoding(),payGateway);/securityCode(安全碼) /* * 根據(jù)傳入的參數(shù)生成alipay的支付URL * param hm 參數(shù)值 * param securityCode 安全碼 * param charset 編碼 * param payGateway 支付寶gateway * return */ public static String makeUrl(HashMap hm,String securityCode,String charset,String payGateway) throws Exception List keys = new ArrayList(hm.keySet(); Collections.sort(keys);/支付寶要求參數(shù)必須按字母排序 StringBuffer content = new StringBuffer(); for (int i = 0; i keys.size(); i+) content.append(String) keys.get(i); content.append(=); content.append(String) hm.get(String) keys.get(i); if (i != keys.size() - 1) content.append(&); content.append(securityCode); String sign = md5(content.toString(),charset); content.delete(0,content.length(); content.append(payGateway); for (int i = 0; i keys.size(); i+) content.append(keys.get(i); content.append(=); content.append(URLEncoder.encode(String) hm.get(keys.get(i), charset); content.append(&); content.append(&sign_type=MD5); keys.clear(); keys = null; return content.toString(); /* * 生成md5編碼字符串. * param str 源字符串 * param charset 編碼方式 * return * */ public static String md5(String str,String charset) if (str = null) return null; char hexDigits = 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f ; MessageDigest md5MessageDigest = null; byte md5Bytes = null; char md5Chars = null; byte strBytes = null; try strBytes = str.getBytes(charset); md5MessageDigest = MessageDigest.getInstance(MD5); md5MessageDigest.update(strBytes); md5Bytes = md5MessageDigest.digest(); int j = md5Bytes.length; md5Chars = new charj * 2; int k = 0; for (int i = 0; i 4 & 0xf; md5Charsk+ = hexDigitsmd5Byte & 0xf; return new String(md5Chars); catch (NoSuchAlgorithmException e) /Log.output(e.toString(), Log.STD_ERR); return null; catch (UnsupportedEncodingException e) /Log.output(e.toString(), Log.STD_ERR); return null; finally md5MessageDigest = null; strBytes = null; md5Bytes = null; 當客戶通過接口url付款后,支付寶會自動的去調(diào)用前面提供的notify_url參數(shù)中的url. (2)支付寶將付款信息返回給系統(tǒng) 當客戶付款后,支付寶就會自動調(diào)用上面表單提供的notify_url,下面是一個notifyurl.jsp的一個例子:html view plaincopyprint?如果確認收到支付寶發(fā)來的客戶付款信息,則返回success,這樣子支付寶就知道系統(tǒng)已經(jīng)收到信息了;否則返回fail,這樣支付寶會過一段時間后再次發(fā)來。其實,只有當支付寶收到success的返回信息后才會停止發(fā)送付款信息,否則會自動的每隔一段時間就調(diào)用上面 的notify_url通信接口。 (3)系統(tǒng)處理支付寶發(fā)來的付款信息 java view plaincopyprint?/*Createdon2005-6-12*Authorstephen*EmailzhoujianqiangATgmailDOTcom*CopyRight(C)2005-2008,Allrightsreserved.*/packagecom.soft4j;importjava.sql.Connection;importjava.sql.SQLException;importjava.util.Enumeration;importjava.util.Vector;importjavax.servlet.http.HttpServletRequest;/*支付寶付款通知接口.*authorstephen*version1.0.0*/publicfinalclassNotifyUrlMgrpublicstaticStringinsert(HttpServletRequesthttpRequest)/定義變量和進行必要的初始化工作EnumerationparameterNames=null;StringparameterName=null;StringparameterValue=null;intcount=0;Vectorparams=null;VectorvParameterName=newVector();VectorvParameterValue=newVector();tryStringorderId=httpRequest.getParameter(out_trade_no);/訂單號if(orderId=null|.equals(orderId)orderId=-1;parameterNames=httpRequest.getParameterNames();booleanisPrint=false;while(parameterNames.hasMoreElements()/循環(huán)收取支付寶發(fā)來的所有參數(shù)信息parameterName=(String)parameterNames.nextElement();parameterValue=httpRequest.getParameter(parameterName);if(parameterValue=null)parameterValue=;vParameterName.add(parameterName);vParameterValue.add(parameterValue);count+;/這里添加對收到信息的處理:一般是將這些信息存入數(shù)據(jù)庫,然后對客戶的訂單進行處理.returnnull;catch(Exceptione)returne.toString();finally/* * Created on 2005-6-12 * Author stephen * Email zhoujianqiang AT gmail DOT com * CopyRight(C)2005-2008 , All rights reserved. */ package com.soft4j; import java.sql.Connection; import java.sql.SQLException; import java.util.Enumeration; import java.util.Vector; import javax.servlet.http.HttpServletRequest; /* * 支付寶付款通知接口. * * author stephe

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
  • 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

最新文檔

評論

0/150

提交評論