This is the part of my html code
dr James – opiekun naukowy
There are various ways to extract data using jsoup. Check http://jsoup.org/cookbook/extracting-data/selector-syntax.
In your case to get the text and image sources you could do like
Document doc = Jsoup.connect(url).get();
for(Element div : doc.select("div")){
System.out.println(div.text());
for(Element img : div.select("img")){
System.out.println(img.attr("src"));
}
}