Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Jsoup Html 到字符串解析器的新手。
我正在使用这个 html 链接点击
我想获得图像和故事内容和标题。
如果你知道 Jsoup 请在这里回答。
谢谢。
试试这个文本
Element images = doc.select("div#storycontent");
在那之后:
System.out.println("imaString "+images.text());
对于图像,您需要在“doc”中找到“img”标签以获取 URL。