2022版JVM精讲
public List<String> loadDetailImages(String detailHtml) {
Document document = Jsoup.parse(detailHtml);
Elements images = document.getElementsByTag("img");
List<String> imageList = new ArrayList<>();
for (Element item : images) {
String src = item.attr("src");
imageList.add(src);
}
return imageList;
}
