Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Тема 10: Введение вработу с XML, JSON, HTML в Java 8+
Тема 10: Введение в
работу с XML, JSON, HTML в Java 8+
Вопрос: Как можно загрузить HTML-страницу с помощью Jsoup?
Document doc = Jsoup.parseUrl("http://example.com");
Document doc = new Jsoup("http://example.com");
Document doc = Jsoup.connect("http://example.com").get();
Document doc = Jsoup.load("http://example.com");
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!