JSOUP 不支持的字符集异常
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您始终可以在没有 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.
请参阅 ISO_8859_1。
See ISO_8859_1..