Logcat打印“接口名称:null”在每个 DefaultHttpClient 执行方法调用期间

发布于 2024-09-29 07:49:13 字数 659 浏览 4 评论 0原文

我多次联系 Web 服务以通过 HttpGet 和 DefaultHttpClient 获取 JSON 字符串。

...
DefaultHttpClient defaultHttpClient = new DefaultHttpClient();
HttpGet httpGet = new HttpGet(url);
HttpResponse httpResponse = (HttpResponse)defaultHttpClient.execute(httpGet);
HttpEntity httpEntity = httpResponse.getEntity();
...

我发现 LogCat 每次 HttpResponse httpResponse = (HttpResponse)defaultHttpClient.execute(httpGet); 都会使用标签 System.out 打印接口名称:null代码> 被执行。

我是否使用 HttpGet 正确建立了此 http 连接?有不同的方法吗?

如何创建此连接而不从 System.out 标记获取 interface name: null LogCat 消息?

I am contacting a web service multiple times to get a JSON String via HttpGet and DefaultHttpClient.

...
DefaultHttpClient defaultHttpClient = new DefaultHttpClient();
HttpGet httpGet = new HttpGet(url);
HttpResponse httpResponse = (HttpResponse)defaultHttpClient.execute(httpGet);
HttpEntity httpEntity = httpResponse.getEntity();
...

I find that LogCat is printing interface name: null with tag System.out for each time HttpResponse httpResponse = (HttpResponse)defaultHttpClient.execute(httpGet); is executed.

Am i establishing this http connection properly with HttpGet? Is there a different way?

How can i create this connection and not get interface name: null LogCat messages from the System.out tag?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

行至春深 2024-10-06 07:49:18

使用这些;

HttpClient client = new DefaultHttpClient();

Use these;

HttpClient client = new DefaultHttpClient();
莫多说 2024-10-06 07:49:17

您是否异步使用 DefaultHTTPClient ?我过去也遇到过类似的错误(Android 2.x),发现一旦我为 DefaultHTTPClient 创建了一个单例并将我的 Web 请求放入 AsyncTask 中,这个错误就消失了。

Are you using the DefaultHTTPClient Asynchronously? I had a similar error in the past (Android 2.x) and found once I made a singleton for the DefaultHTTPClient and put my web request inside an AsyncTask this error went away.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文