public String getOrderEvidence(Map<String, String> parameters){
String json= (parameters);
try {
String postURL = GlobalConstant.ORDER_EVIDENCE_URL;
PostMethod postMethod = null;
postMethod = new PostMethod(postURL) ;
("Content-Type", "application/x-www-form-urlencoded;charset=utf-8") ;
//参数设置,需要注意的就是里边不能传NULL,要传空字符串
NameValuePair[] data = {
new NameValuePair("parameters",json)
};
(data);
//连接超时设置为4秒
RequestConfig requestConfig = ().setSocketTimeout(2000).setConnectTimeout(2000).build();
HttpPost httpPost = new HttpPost(postURL);
(requestConfig);
httpClient = new ();
int response = (postMethod); // 执行POST方法
String result = () ;
JSONObject jsonObject = new JSONObject(result);
if(jsonObject!=null){
JSONObject dataObject = ("data");
if(dataObject!=null){
Integer errCode = ("errCode");
/**
* 错误码 错误码定义
* 0 SUCCESS
* -1 模型不存在(表里没数据)
* -2 上链信息不存在(表里没数据)
* -3 数据未上链
* -4 查询信息缺少appkey信息(入参缺少appkey)
* -5 查询信息缺少primaryKey信息(入参缺少primaryKey)
* -6 查询信息缺少tableName信息(入参缺少tableName)
*/
if(errCode == 0){
String evidenceCode = ("data");
return evidenceCode;
}else{
("====getOrderEvidence区块链错误码-1 模型不存在-2 上链信息不存在(表里没数据)-3 数据未上链 -4 参数缺少appkey -5 缺少primaryKey -6 缺少tableName==========" + errCode);
return "";
}
}else{
return "";
}
}else{
return "";
}
} catch (Exception e) {
("getOrderEvidence请求异常"+(),e);
return "";
}
}