java 调用webapi_java 调用 C# webapi

public static void main(String[] args) throwsException {//DoGet(String url)

String resultGet = DoGet("http://localhost:14248/api/Report/GetTest?parentid=40");//DoPost(String url,List nvps)

List nvps = new ArrayList();

nvps.add(new BasicNameValuePair("parentid", "40"));

String resultPost= DoPost("http://localhost:14248/api/Report/PostTest",nvps);//DoPost(String url, JSONObject template)

JSONObject template = newJSONObject();

template.put("data",data);

String json=HttpWebapi.DoPost(urlString,template);//DoPost(String url, String json)

SysUser user=newSysUser();

user.setAccount(etAccount.getText().toString());

user.setPassword(etPwd.getText().toString());

ApiRequest 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) throwsException {

HttpGet httpGet= newHttpGet(url);

HttpClient client= newDefaultHttpClient();

HttpResponse resp=client.execute(httpGet);

HttpEntity he=resp.getEntity();

String respContent= EntityUtils.toString(he, "UTF-8");returnrespContent;

}public static String DoPost(String url,List nvps) throwsException {

HttpPost httpost= newHttpPost(url);

HttpClient client= newDefaultHttpClient();

httpost.setEntity(new UrlEncodedFormEntity(nvps, "UTF-8"));

HttpResponse resp=client.execute(httpost);

HttpEntity he=resp.getEntity();

String respContent= EntityUtils.toString(he, "UTF-8");returnrespContent;

}public static String DoPost(String url, JSONObject template)throwsException{

HttpClient httpClient= newDefaultHttpClient();

HttpPost httpPost= newHttpPost(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");returnrespContent;

}public static String DoPost(String url, String json) throwsException{

HttpClient httpClient= newDefaultHttpClient();

HttpPost httpPost= newHttpPost(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");returnrespContent;

}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值