从 Android 的 Web 服务获取数据

发布于 2024-12-08 17:23:24 字数 405 浏览 0 评论 0原文

    HttpClient client = new DefaultHttpClient();
    HttpGet request = new HttpGet();
    request.setURI(new URI(address));
    HttpResponse response = client.execute(request);
    BufferedReader in = new BufferedReader(new 
InputStreamReader(response.getEntity().getContent()));

当我检索这样的信息时,bufferedreader 仅包含一长行的整个文本。它不会将中断数据分成行。结果,只有前 3 个 kword 适合该行,其余的都丢失了。我怎样才能避免这个问题?

    HttpClient client = new DefaultHttpClient();
    HttpGet request = new HttpGet();
    request.setURI(new URI(address));
    HttpResponse response = client.execute(request);
    BufferedReader in = new BufferedReader(new 
InputStreamReader(response.getEntity().getContent()));

When I retrieve information like that, bufferedreader in contains only one long line with the whole text. It doesn't divide break data into lines. As a result, only first 3 kwords are fit into the line and the rest is losed. How can I avoid this problem?

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

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

发布评论

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

评论(2

怀中猫帐中妖 2024-12-15 17:23:24

简单地

URL url = new URI(address).toURL();
InputStream is = url.openStream();

Simply

URL url = new URI(address).toURL();
InputStream is = url.openStream();
素衣风尘叹 2024-12-15 17:23:24

你尝试过这个吗?

String data = EntityUtils.toString(response.getEntity());

Have you try this?

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