Jsoup parse(String html) is not ducumented as thread safe. How do you parse multiple documents with Jsoup concurrently? Thanks
Jsoup parse(String html) is not ducumented as thread safe. How do you parse multiple
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
By using
Joup.parse.As long as you’re not working on the same document, it creates new object internally.
https://groups.google.com/forum/?fromgroups=#!topic/jsoup/QIij7DEhj8E
This comes up from time to time; it’s probably worth filing a documentation issue against this.