如题所诉!当然可以相互模拟客户端去调用对方提供的服务,但这个应该不是正确的方法,望有前辈赐教
1 回答
守着星空守着你
TA贡献1799条经验 获得超8个赞
你在代码里面post对调用接口不就行了吗?如果传参数的话也可以加载到post里面啊
HttpPost post = new HttpPost();
post.setURI(new URI(url));
StringEntity entiy = new StringEntity(data);
post.setEntity(entiy);
post.setHeader("Content-Type","text/html; charset=UTF-8");
post.setHeader("Accept-Encoding", "deflate");
CloseableHttpResponse response = client.execute(post);
添加回答
举报
0/150
提交
取消