利用client获取外链接口

在serviceImpl.java添加以下代码:

public static final String ENCODING="UTF-8";

public static String doInvoke(String uri, String postContent, long timeOut) throws IOException{
HttpUriRequest method = null;

HttpPost postMethod = new HttpPost(uri);
method = postMethod;
postMethod.setEntity(new ByteArrayEntity(postContent.getBytes(ENCODING)));

String result = null;
HttpClient client = new DefaultHttpClient();
try {
HttpParams params = client.getParams();
HttpConnectionParams.setConnectionTimeout(params, (int) timeOut);
HttpConnectionParams.setSoTimeout(params, (int) timeOut);
HttpResponse response = client.execute(method);
method.addHeader("Content-Type","application/x-www-form-urlencoded");
method.addHeader("Accept-Language", "zh-cn");
method.addHeader("Accept-Encoding", "gzip, deflate");
if(response.getStatusLine().getStatusCode() !=200){
throw new java.net.ConnectException("response code "+response.getStatusLine().getStatusCode()+" for URL "+uri);
}
HttpEntity entity = response.getEntity(); 
 if (entity != null) {  
 result = EntityUtils.toString(entity);  
           }  
}catch (IOException ex) {
throw ex;
} finally {
client.getConnectionManager().shutdown();  
}
return result;
}

//用法

public static String findOrgs(String orgCode){
String json=
"{" +
"\"head\":{" +
"\"fromAppid\":\"CMS\"," +
"\"password\":\"123456\"," +
"\"skip\":0" +
"}," +
"\"content\":{" +
"\"orgCode\":\""+orgCode+"\"" +
"}" +
"}";

try {
return doInvoke("http://192.168.0.136:80/party/interface/findOrgs",json,30000);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值