在 httpclient 中,将 HttpEntity 转换为字符串的最优雅/正确的方法是什么?

发布于 2024-08-17 07:28:10 字数 785 浏览 6 评论 0原文

我正在使用 Apache httpcomponents Java 库 获取网页。连接结果后,我得到的是 HttpEntity 有一个方法 getContent() 返回一个 InputStream 并且还有一个方法 writeTo() 写入 OutputStream。

我想将结果转换为字符串以提取信息。最优雅(且安全)的方法是什么?

一些可能的解决方案:

  • 写入 ByteArrayOutputStream ,然后使用 String 构造函数将这些字节转换为 String
  • 使用 InputStreamReader 直接从流中读取,然后放入 StringBuilder

这两种感觉都有点难看。您会建议选择其中之一还是其​​他?

I'm fetching a web page using the Apache httpcomponents Java library. After connecting the result I get is an HttpEntity which has a method getContent() which returns an InputStream and also has a method writeTo() which writes to an OutputStream.

I want to turn the result into a String for extracting information. What is the most elegant (and safe) way to do this?

Some possible solutions:

  • Write to a ByteArrayOutputStream and then convert those bytes to a String with a String constructor
  • use InputStreamReader to read straight from the stream, and put into a StringBuilder

Both of these feel a bit ugly. Would you recommend choosing one of these or something else?

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

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

发布评论

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

评论(3

不可一世的女人 2024-08-24 07:28:10

System.out.println( EntityUtils.toString(httpResponse.getEntity()) );

System.out.println( EntityUtils.toString(httpResponse.getEntity()) );

一直在等你来 2024-08-24 07:28:10

怎么样(伪):

BasicResponseHandler handler = new org.apache.http.impl.client.BasicResponseHandler ();    
String str = httpClient.execute(request, handler);

在这种情况下,您必须自己处理异常。

What about (pseudo):

BasicResponseHandler handler = new org.apache.http.impl.client.BasicResponseHandler ();    
String str = httpClient.execute(request, handler);

You would have to handle exceptions on your own in this case.

难以启齿的温柔 2024-08-24 07:28:10

这可能很丑陋,但我认为这是唯一的方法。您可以使用 IOUtils.toString() 来自 Commons-IO,但无需编写您自己的代码。

It may be ugly, but I think that's the only way to do it. You can use IOUtils.toString() from Commons-IO though without having to write your own code.

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