我试图通过使用Jsoup库获取Google Play应用的标题图片。这是代码:
public static String getGooglePlayURL(String urlP) {
// LOAD IMAGE URL
Document doc = null;
try {
doc = Jsoup.connect("https://play.google.com/store/apps/details?id=tbs.search&hl=en").get();
} catch (Exception e) {
e.printStackTrace();
}
String imageUrlAct = "";
if (doc != null) {
Element image = doc.select("img").first();
imageUrlAct = image.attr("abs:src");
}
Log.e("URL GP", "URL: " + imageUrlAct);
return imageUrlAct;
}
然而,它似乎每次都返回一个空字符串。我做错了什么或有什么选择? 非常感谢你。