I use standard constructions for working with jsoup:
Document mydoc = null;//Здесь хранится будет разобранный html документ try { //Считываем страницу mydoc = Jsoup.connect(httpAddress).get(); } catch (IOException e) { //Если не получилось ссчитать Log.wtf("maratsoftTAG", "Эксепшн!"); } //Получаем заголовок mytitle = mydoc.title(); And I can not parse the site http://mirfactov.com/ , it just returns the void to different methods of the jsoup library, not only .title (), but also .select (), and .getElementsByTag () and others. At the same time, the rest of the sites parseys with a bang. What is the trick here?