org.jsoup.UnsupportedMimeTypeException
采用 org.jsoup.Jsoup 发送post请求抛这个异常时
Unhandled content type. Must be text/*, application/xml, or application/*+xml. Mimetype=application
加上这个即可
Document post = connect.ignoreContentType(true).post();
采用 org.jsoup.Jsoup 发送post请求抛这个异常时
Unhandled content type. Must be text/*, application/xml, or application/*+xml. Mimetype=application
加上这个即可
Document post = connect.ignoreContentType(true).post();