JSOUP 不支持的字符集异常

发布于 2024-12-11 06:14:26 字数 841 浏览 0 评论 0原文

我正在使用 jsoup 阅读以下页面:

http://valencia.loquo.com/cs/vivienda/piso-en-alquiler/312

使用以下代码:

Document doc = Jsoup.connect("http://valencia.loquo.com/cs/vivienda/piso-en-alquiler/312").get();

我收到此错误:

java.nio.charset.UnsupportedCharsetException: ISO-LATIN-1

我检查了 HTML 响应标头:

Status Code: 200
Date: Sun, 23 Oct 2011 20:10:02 GMT
Content-Encoding: gzip
X-Pad: avoid browser bug
Connection: Keep-Alive
Content-Length: 13890
Server: Apache/2.2.3 (Debian)
Vary: Accept-Encoding
Content-Type: text/html; charset=iso-latin-1
Keep-Alive: timeout=5, max=100

如您所见,HTML 响应显示 charset=iso-latin-1 可能这就是我收到错误的原因。无论如何,我可以看到 HTML 主体响应。有什么方法可以避免此错误并获取文档(使用标准字符集)?

预先感谢您的帮助

达尼洛

I'm using jsoup to read this the following page:

http://valencia.loquo.com/cs/vivienda/piso-en-alquiler/312

Using the following code:

Document doc = Jsoup.connect("http://valencia.loquo.com/cs/vivienda/piso-en-alquiler/312").get();

and I get this error:

java.nio.charset.UnsupportedCharsetException: ISO-LATIN-1

I inspected the HTML response header:

Status Code: 200
Date: Sun, 23 Oct 2011 20:10:02 GMT
Content-Encoding: gzip
X-Pad: avoid browser bug
Connection: Keep-Alive
Content-Length: 13890
Server: Apache/2.2.3 (Debian)
Vary: Accept-Encoding
Content-Type: text/html; charset=iso-latin-1
Keep-Alive: timeout=5, max=100

As you can see the HTML response says charset=iso-latin-1 probably that is why I get the error. Anyway I can see the HTML body reponse. There is any way to avoid this error and getting the document (with the standard charset)?

Thanks in advance for your help

Danilo

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

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

发布评论

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

评论(2

入画浅相思 2024-12-18 06:14:26

您始终可以在没有 JSoup 的情况下下载文档,以编程方式转换编码(这里有一个 指向说明书的链接< /a>) 并将转换后的字符串传递给 JSoup。

You can always download the document without JSoup, convert the encoding programmatically (here's a link to the cookbook) and pass the converted String to JSoup.

梦一生花开无言 2024-12-18 06:14:26

请参阅 ISO_8859_1

ISO 拉丁字母 1 号,又名 ISO-LATIN-1

See ISO_8859_1..

ISO Latin Alphabet No. 1, a.k.a. ISO-LATIN-1

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