gpt4 book ai didi

android - Volley - URL 没有响应

转载 作者:行者123 更新时间:2023-11-29 21:39:03 25 4
gpt4 key购买 nike

我无法从使用 Volley 库访问的 URL 获得任何响应,请问您能帮帮我吗?

我在我的模拟器上得到这个: "com.android.volley.NoConnectionError:java.io.IOexception:content length promised 45 bytes, but received 0 ."

我已经粘贴了下面的代码:

字符串 url = "http://ipchicken.com "

    JsonObjectRequest jsObjRequest = new JsonObjectRequest(
Request.Method.POST, url, null,
new Response.Listener<JSONObject>() {

@Override
public void onResponse(JSONObject response) {
// TODO Auto-generated method stub
sampletext.setText("Response => " + response.toString());


}
}, new Response.ErrorListener() {

@Override
public void onErrorResponse(VolleyError error) {
// TODO Auto-generated method stub
sampletext.setText( error.toString());

}
});

queue.add(jsObjRequest);

最佳答案

如果您手动构造您的RequestQueue,而不是调用Volley.newRequestQueue,您需要对其调用.start()。否则它看起来不错。谢谢

关于android - Volley - URL 没有响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17600621/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com