在android中我发送post请求(使用volley)但数据不在json中。 实施例
POST /info HTTP/1.1
Host: test.com
Cookie: test_web=1234;
Connection: keep-alive
Content-Length: 10
id=123
你能帮帮我吗?
提前谢谢。
答案 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