volley JsonObjectRequest 提交参数

刚接触volley,都说volley强大,而且可自由定制。事实证明也是如此,但是不解的是,像post提交,jsonObject带参数,这些东西为何不封装的好点。

开始时使用String  没什么问题。当改为json就出问题了,无法提交参数。最终解决方案。

public class JsonObjectRequestWithCookie extends JsonObjectRequest {
    private Map mHeaders = new HashMap<>();
    public JsonObjectRequestWithCookie(String url, JSONObject jsonRequest, Response.Listener listener, Response.ErrorListener errorListener,Map map) {
        super(Request.Method.POST, url, jsonRequest, listener, errorListener);
 
    }
    public JsonObjectRequestWithCookie(String url, JSONObject jsonRequest, Response.Listener listener, Response.ErrorListener errorListener){
        super(url, jsonRequest, listener, errorListener);
    }
 
 
    //拿到客户端发起的http请求的Header
    @Override
    public Map getHeaders() throws AuthFailureError {
        return mHeaders;
    }
 
    //发送请求时,往Header中添加cookie,可以一并发送
    public void setCookie(String cookie) throws AuthFailureError {
        mHeaders.put("User-Agent", "Android:1.0:[email protected]");
        mHeaders.put("Cookie",cookie);
    }
}

就是自己定义一个类,继承 JsonObjectRequest,里面可以获得cookie,而cookie可以携带参数。
下面再给出服务端怎么拿到参数。
Cookie[] cookies = request.getCookies();

String value;
if(cookies!=null){
    for(int i=0;i


你可能感兴趣的:(android)