?? ?? ?? ?? API? SF ?? ??, ?? ?? ??, ZTO ?? ?? ?? ??? ? ????. ?? ??????? ?????? ???? ?????, ?????? ?? ????? ? ????? ???? ??. ????? ???? ERP ??? ??? ??, ? ?????? ?? ?????? ???? ??? ???? ?????. ??, ? ?? ????? ???? ?????? ??? ????? ??? ??? ???, ???? ??? ?? ??, ??? ????. ????? ?? API? ?? ?? ???? ??? ??, ????? ?? ?? ???
1. ????? ?? ????
1. ????? ????? ?? ?, ?? ??? ?? ?? ?? ?, ? API? ???? ?? ?? ??? ?? ? ????.
2.?? ?? ??? ????? ??? ?? ??? ?????
3. ?? ?? ? ??? ?? ??? ????
2. Express Bird ?? ??? ??? ?????
2. ??? ?? ??(ID, API ?)? Express Bird ????? ?????
3. ???? ?? ???? ???? ???? ?????. ?? ?? API ??: ? ??
4. ?????? ????? ?? ?? ?????? ?????.
3. ?? ??
????? ??? ???? ?? ?? ?????? ?? ?? ?? ??? ?? ?? ??? ?? ??? ??? ???? ???? 400? ??? ?? ?? ??? ?????.
????? ??: express.info.get
?? ??: HTTP POST ?? ?? ??? ??: utf-8
?? ?:
package com.zs.app;
import php.io.BufferedReader;
import php.io.IOException;
import php.io.InputStreamReader;
import php.io.OutputStreamWriter;
import php.io.UnsupportedEncodingException;
import php.net.HttpURLConnection;
import php.net.URL;
import php.net.URLEncoder;
import php.security.MessageDigest;
import php.util.HashMap;
import php.util.Map;
/**
*
* Express Bird ?? ?? ??? ?? ?????
*
* @Technical QQ Group: 456320272
* @see: ? ??
* @copyright:
*
* DEMO? ????? ID? ?? ?? ????? ????? ???? ???? ??? ??? ??????
* ??? ???? 500?? ???? ?? ?? ?? ?? ?? ?????? ????? ?? ????
*
* ?? ?????? ID ? Key? ?????. : ???
*/
public class KdniaoTrackQueryAPI {
//DEMO
public static void main(String[] args) {
KdniaoTrackQueryAPI api = new KdniaoTrackQueryAPI();
try {
String result = api.getOrderTracesByJson("ANE", "210001633605");
System.out.print(result);
} catch(?? e) {
e.printStackTrace();
}
}
//????? ID
private String EBusinessID="1330422";
//????? ???? ???? ????? ??? ???? ??? ?????, ???? ??? ????
private String AppKey="7611818b-6279-4398-8747-df2ca39e86b4";
//URL ??
private String ReqURL ="? ??
/* *
* ?? ?? ??? ???? Json ???
* @throws Exception
*/
public String getOrderTracesByJson(String expCode, String expNo)?? ?? ??{
String requestData= "{'OrderCode':'','ShipperCode':'" + expCode + " ','LogisticCode':' " + expNo + "'}";
Map<String, String> params = new HashMap<String, String>();
params.put("RequestData", urlEncoder(requestData, "UTF -8"));
params.put("EBusinessID", EBusinessID);
params.put("RequestType", "1002");
String dataSign=encrypt(requestData, AppKey, "UTF-8");
params.put("DataSign" , urlEncoder(dataSign, "UTF-8"));
params.put("DataType", "2");
String result=sendPost(ReqURL, params);
//??? ??? ??? ???? ??? ??.... ....
?? ??;
}
/**
* MD5 ???
* @param str content
* @param charset ??? ??
* @throws Exception
*/
@SuppressWarnings("unused")
private String MD5(String str, String charset)?? ?? ?? {
MessageDigest md = MessageDigest.getInstance(" MD5");
md.update(str.getBytes(charset));
byte[] result = md.digest();
StringBuffer sb = new StringBuffer(32);
for ( int i = 0; i < result.length; i++) {
int val = result[i] & 0xff;
if (val <= 0xf) {
sb.append("0");
}
sb .append(Integer.toHexString(val ));
}
return sb.toString().toLowerCase();
}
/**
* base64 ???
* @param str content
* @param charset ??? ??
* @throws UnsupportedEncodingException
*/
private String base64(String str, String charset) throws UnsupportedEncodingException{
String Encode(str.getBytes(charset));
???? ??;
}
@SuppressWarnings("unused")
private String urlEncoder(String str, String charset) throws UnsupportedEncodingException{
String result = URLEncoder.encode(str, charset);
return result;
}
/* *
* ????? ?? ?? ??
* @param content content
* @param keyValue Appkey
* @param charset ??? ??
* @throws UnsupportedEncodingException,Exception
* @return DataSign ??
*/
@SuppressWarnings("unused")
private String encrypt (String content, String keyValue, String charset) throws UnsupportedEncodingException, Exception
{
if (keyValue != null)
{
return base64(MD5( content + keyValue, charset), charset);
}
return base64(MD5(content, charset), charset);
}
/**
* ??? URL? POST ??? ??? ????
* @param url ??? ?? URL
* @param params ??? ???? ??
* @return ?? ???? ?? ??
*/
@SuppressWarnings("unused")
private String sendPost( ??? url, Map<String, String> params) {
OutputStreamWriter out = null;
BufferedReader in = null;
StringBuilder result = new StringBuilder();
try {
URL realUrl = new URL(url);
HttpURLConnection conn = (HttpURLConnection) realUrl.openConnection();
// 發(fā)送POST請求必須設(shè)置如下兩行
conn.setDoOutput(true);
conn.setDoInput(true);
// POST??
conn.setRequestMethod("POST") ;
// ????? ???? ??
conn.setRequestProperty("accept", "*/*");
conn.setRequestProperty("connection", "Keep-Alive");
conn.setRequestProperty("user-agent ",
"Mozilla/4.0(?? ??; MSIE 6.0; Windows NT 5.1;SV1)");
conn.setRequestProperty("MessContent-Type", "application/x-www-form-urlencoded");
conn.connect();
// 獲取URLConnection對象對應(yīng)的輸流流
out = new OutputStreamWriter(conn.getOutputStream(), "UTF-8");
// 發(fā)送請求參數(shù)
if (params != null) {
StringBuilder param = new StringBuilder();
for (Map.Entry< ???, ???> ?? : params.entrySet()) {
if(param.length()>0){
param.append("&");
}
param.append(entry.getKey());
param.append("=");
param.append(entry.getValue());
//System.out.println(entry.getKey()+":"+entry.getValue());
}
//System.out.println("param:"+param.toString());
out.write(param.toString());
}
// flash輸流的緩沖
out.flush();
// URL? ??? ?? ?? BufferedReader ?? ???? ?????.
in = new BufferedReader(
new InputStreamReader(conn.getInputStream(), "UTF-8"));
String line;
while ((line = in. readLine( )) != null) {
result.append(line);
}
} catch (Exception e) {
e.printStackTrace();
}
//finally ??? ???? ?? ???? ?? ???? ????.
?????{
try{
if(out!=null){
out.close();
}
if(in!=null){
in.close();
}
}
catch(IOException ex) {
ex .printStackTrace();
}
}
return result.toString();
}
private static char[] base64EncodeChars = new char[] {
'A', 'B', 'C', 'D ', 'E', 'F', 'G', 'H',
'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P' ,
' Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
'Y', 'Z', 'a', 'b' , 'c', 'd', 'e', ???'f',
'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n ',
'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
'w', 'x', 'y', 'z ', '0', '1', '2', '3',
'4', '5', '6', '7', '8', '9', '+', '/' };
public static String base64Encode(byte[] data) {
StringBuffer sb = new StringBuffer();
int len ????= data.length;
int i = 0;
int b1, b2, b3;
while ( i < len) {
b1 = data[i++] & 0xff;
if (i == len)
{
sb.append(base64EncodeChars[b1 >> 2]);
sb.append(base64EncodeChars [(b1 & 0x3) < ;< 4]);
sb.append("==");
break;
}
b2 = ???[i++] & 0xff;
if (i == len)
{
sb.append(base64EncodeChars[ b1 >>> 2]);
sb.append(base64EncodeChars[((b1 & 0x03) << 4) | ((b2 & 0xf0) >>> 4)]);
sb .append(base64EncodeChars[(b2 & 0x0f) << 2]);
sb.append("=");
break;
}
b3 = data[i++] & 0xff;
sb.append(base64EncodeChars[ b1 >>> 2]);
sb.append(base64EncodeChars[((b1 & 0x03) << 4) | ((b2 & 0xf0) >>> 4)]);
sb .append(base64EncodeChars[((b2 & 0x0f) << 2) | ((b3 & 0xc0) >>> 6)]);
sb.append(base64EncodeChars[b3 & 0x3f]);
}
return sb.toString();
}
}