refund.jsp.svn-base

来自「项目支付宝批量打款,采用httpclient+spring +quarz实现.」· SVN-BASE 代码 · 共 48 行

SVN-BASE
48
字号
<%@ page language="java" contentType="text/html; charset=utf-8"
	pageEncoding="utf-8"%>
<%@ page import="com.alipay.util.*"%>
<%@ page import="java.util.*"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>支付宝支付</title>
</head>
<%
	//String paygateway	=	"https://www.alipay.com/cooperate/gateway.do?";	//'支付接口
	String paygateway = "http://www.alipay3.net/cooperate/gateway.do?"; //'支付接口
	String service = "bptb_refund_file";//快速付款交易服务
	String date = "20080128";
	String sign_type = "MD5";
	//***************************************************
	String biz_type = "d_sale";
	//***************************************************
	//String partner			=	"2088002029290264"; //支付宝合作伙伴id (账户内提取)
	//String key             =    "kuip37avpflqhb94zdbxq79cd6jlacti"; //支付宝安全校验码(账户内提取)
	String partner = "2088001958404904"; //支付宝合作伙伴id (账户内提取)
	String key = "8kgxi38luynay9k4vdakzr73ibc35urv"; //支付宝安全校验码(账户内提取) 
	String input_charset = "gbk";

	String ItemUrl = Payment.CreateUrl2(paygateway, service, partner,
			biz_type, date, sign_type, key, input_charset);
%>
<form name="download" method="post"
	action="http://www.alipay3.net/cooperate/gateway.do"><input
	type="hidden" name="_input_charset" value="<%=input_charset%>">
<input type="hidden" name="partner" value="<%=partner%>"> <input
	type="hidden" name="service" value="<%=service%>"> <input
	type="hidden" name="sign" value="<%=ItemUrl%>"> <input
	type="hidden" name="sign_type" value="<%=sign_type%>"> <input
	type="hidden" name="biz_type" value="<%=biz_type%>"> <input
	type="hidden" name=date value="<%=date%>">
<table>
	<tr>
		<td><input type='button' name='v_action' value='支付宝网上安全即时支付平台'
			onClick='document.download.submit()'></td>
	</tr>
</table>
</form>
<body>

</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?