[RU] Данная программа работает по принципу:
- Получает с помощью библиотеки jsoup HTML-код страницы;
- Находит в HTML-коде теги img и получает абсолютные ссылки на изображения из атрибута src;
- Скачивает изображения в папку images проекта, при этом сохраняя оригинальные названия файлов;
- Выводит в консоль список c названиями скачанных файлов.
Если будете использовать код, не забудьте про библиотеку Jsoup (https://jsoup.org/).
[ENG] This program works according to the principle:
- Receives the HTML-code of the page using the jsoup library;
- Finds img tags in HTML-code and gets absolute links to images from the src attribute;
- Downloads images to the images folder of the project, while preserving the original file names;
- Prints to the console a list with the names of the downloaded files.
If you use code, don't forget about the Jsoup library (https://jsoup.org/).