在volley android中发送带有数据(没有json)的发布请求

时间:2017-02-13 09:27:56

标签: android android-volley

在android中我发送post请求(使用volley)但数据不在json中。 实施例

 POST /info HTTP/1.1
 Host: test.com
 Cookie: test_web=1234;
 Connection: keep-alive
 Content-Length: 10

 id=123
你能帮帮我吗? 提前谢谢。

1 个答案:

答案 0 :(得分:-1)

使用ION库

dependencies {
    compile 'com.koushikdutta.ion:ion:2.+'
}

用法:

Ion.with(getContext())
.load("https://koush.clockworkmod.com/test/echo")
.setBodyParameter("goop", "noop")
.setBodyParameter("foo", "bar")
.asString()
.setCallback(...)

中的更多信息 https://github.com/koush/ion