2013-01-17 53 views
-2

我要尋找一個Java API匯豐銀行的支付網關script.i開發在PHP,但未來 到Java howcan我做that.below是PHP代碼,我用的Java API匯豐銀行的支付網關

$ch = curl_init(); 
$url = ‘https://www.secure-epayments.apixml.hsbc.com’; 
curl_setopt($ch, CURLOPT_URL, $url); 
curl_setopt($ch, CURLOPT_HEADER, 0); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt($ch, CURLOPT_POST, 1); 
curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_data_will_go_here); 
ob_start(); 
$data = curl_exec($ch); 
curl_close ($ch); 
ob_end_clean(); 

回答