我想获取该网站的产品说明: https://www.real.de/product/346010948/ ?id_item_promotion=620332
我想我需要但我不知道如何解析它。
这是我的解析代码
@Override
public Product getDescriptionByReal(Product product) {
String completeUrl = "https://www.real.de/product/" + product.getPlattformProductId() + "/";
try {
Document document = Jsoup.connect(completeUrl).get();
Elements description = document.select("div#prodct-data");
product.setDesc(description.text());
return product;
} catch (IOException e) {
product.setDesc(e.getMessage());
return product;
}
}
如果我尝试“document.select(“div.rd-product-description__text”);” 或“document.select(“div#prodct-data”)”我什么也得不到,如果我将其更改为“document.select(“div”);我得不到我想要的数据。
相关分类