Jsoup Unhandled content type异常

记录一下jsoup Unhandled content type异常

异常表现

在这里插入图片描述
完整的异常信息

org.jsoup.UnsupportedMimeTypeException: Unhandled content type. Must be text/*, application/xml, or application/xhtml+xml. Mimetype=image/png, URL

应该是请求头里面的请求类型(ContextType)不符合要求。

解决方法

ignoreContentType(true)

在这里插入图片描述

发布了31 篇原创文章 · 获赞 12 · 访问量 6453

猜你喜欢

转载自blog.csdn.net/cyz52/article/details/102539098