我正在尝试为漫画下载程序解析以下网址: https://mangadex.org/chapter/447217/1
这是HTML中包含图片来源的部分:
<div class="reader-image-wrapper col-auto my-auto justify-content-center
align-items-center noselect nodrag row no-gutters" data-page="1" data-
chapter="447217" style="order: 1;">
<img draggable="false" class="noselect nodrag cursor-pointer"
src="https://mangadex.org/data/43aa94423cd226c0dfea2ca0286f92be/t1.png"
data-page="1" data-chapter="447217">
</div>
...
我正在使用Jsoup使用以下代码来解析页面的html:
Document test= Jsoup.connect("https://mangadex.org/chapter/447217/1").get();
Elements chapPage= test.select("img[data-chapter]");
String imgsrc=chapPage.first().attr("src");
Jsoup解析除包含图像源的img标签以外的所有内容。
有人可以帮我吗?