android WebService的网络请求库
https://raw.githubusercontent.com/zdmisif/WsNet/master
添加对应的maven库地址
maven {
url "https://raw.githubusercontent.com/zdmisif/WsNet/master"
}
添加对应的库
dependencies{
compile 'com.sandu.develop:wsnet:0.0.1'
}
Wsnet wsnet = new Wsnet();
wsnet.init("http://WebXml.com.cn/", "http://www.webxml.com.cn/WebServices/IpAddressSearchWebService.asmx");
public interface WsApi {
@WsMethodName("getCountryCityByIp")
WsCall getCountryCityByIp(@WsParam("theIpAddress") String theIpAddress);
}
WsMethodName 对应声明对应的方法
WsParam 对应方法的参数
WsFileParam 上传图片的参数,传的是图片数据类型为byte[]
类似Retrofit的用法
WsApi wsApi = wsnet.create(WsApi.class);
wsApi.getCountryCityByIp("119.132.20.130").execute(new WsCallBack() {
@Override
public void onSuccess(String result) {
//返回的结果数据
}
@Override
public void onFaile(String error) {
//调用的错误,返回错误信息
}
});