okhttp post请求传给服务器文件,热乎的,OKHttp Post请求参数发送流请求

其实我从年前就开始学这个okHttp,只不过一直没成功过,遇到过400,411,500等各种错误,整的我是各种捉急呀,昨天刚开始上班,我又开始整它,还好借着我今天生日寿星最大哈,终于搞出来了,各种泪流满面呀。

好了,说这么多也烦了,开始说说代码吧,这里代码我服务端用的是C# WCF,贴一个声明方法如下。

[OperationContract]

[WebInvoke(

Method = "POST",

ResponseFormat = WebMessageFormat.Json,

RequestFormat = WebMessageFormat.Json,

BodyStyle = WebMessageBodyStyle.WrappedRequest,

UriTemplate = "GetUsers")]

int GetUsers(string userName, string userPwd, String devicecid);

大家可看到这里我的Request和Response用的都是Json,所以这就要求客户端发送的必须是Json请求。

好了,那么,这时候就该OkHttp上场了。

先贴下,手机端点击触发事件的方法

private Object[] parameterValue;

private String[] parameter;

private String method;

//登录方法

private void Login() {

new Threa

你可能感兴趣的:(okhttp,post请求传给服务器文件)