java 调用 C# webapi

java 调用 C# webapi

最近项目需要 java调用 .net 的webapi。

对于get来说很简单,但是post方法遇到了些问题,最后也是曲线救国。

先看代码


```java
public static void main(String[] args) throws Exception {
//DoGet(String url)
String resultGet = DoGet("http://localhost:14248/api/Report/GetTest?parentid=40");

//DoPost(String url,List<NameValuePair> nvps)
List<NameValuePair> nvps = new ArrayList<NameValuePair>();
     nvps.add(new BasicNameValuePair("parentid", "40"));
String resultPost = DoPost("http://localhost:14248/api/Report/PostTest",nvps);

//DoPost(String url, JSONObject template)
JSONObject template = new JSONObject();
template.put("data",data);
String json=HttpWebapi.DoPost(urlString,template);

//DoPost(String url, String json)
SysUser user=new SysUser();
user.setAccount(etAccount.getText().toString());
user.setPassword(etPwd.getText().toString());
ApiRequest<SysUser> request=new ApiRequest<>();
request.setData(user);
String data=JsonConvert.toJSON(request);
String json = HttpWebapi.DoPost(AppConfig.getUrl() + "api/user/login", data);
}

public static String DoGet(String url) throws Exception {

HttpGet httpGet = new HttpGet(url);  
        HttpClient client = new DefaultHttpClient();  
        HttpResponse resp = client.execute(httpGet);  
        HttpEntity he = resp.getEntity();  
        String respContent = EntityUtils.toString(he, "UTF-8");  
        return respContent; 
}

public static String DoPost(String url,List<NameValuePair> nvps) throws Exception {
HttpPost httpost = new HttpPost(url);  
        HttpClient client = new DefaultHttpClient();  
        httpost.setEntity(new UrlEncodedFormEntity(nvps, "UTF-8"));  
        HttpResponse resp = client.execute(httpost);  
        HttpEntity he = resp.getEntity();  
        String respContent = EntityUtils.toString(he, "UTF-8");  
        return respContent; 
}

public static String DoPost(String url, JSONObject template)throws Exception{
HttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
httpPost.addHeader(HTTP.CONTENT_TYPE, "application/json");
httpPost.setEntity(new StringEntity(template.toString(),"utf-8"));
HttpResponse resp = httpClient.execute(httpPost);
String respContent = EntityUtils.toString(resp.getEntity(), "UTF-8");
return respContent;
}

public static String DoPost(String url, String json) throws Exception{
    HttpClient httpClient = new DefaultHttpClient();
    HttpPost httpPost = new HttpPost(url);
    httpPost.addHeader(HTTP.CONTENT_TYPE, "application/json");
    httpPost.setEntity(new StringEntity(json,"utf-8"));
    HttpResponse resp = httpClient.execute(httpPost);
    String respContent = EntityUtils.toString(resp.getEntity(), "UTF-8");
    return respContent;
}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值