简体   繁体   中英

Selecting multiple elements in jsoup

Is it possible in Jsoup to select multiple elements just with one query, to be more clear here is the image of the websites' structure: 在此处输入图片说明 so I want only the content inside these two elements, is it possible to do it with one query :/

You can use this -

Elements els = doc.select(".ingress,.body-text");

Now els.text() contains the whole content of those two elements.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM