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.
リンクと h3 は要素です。for (Element link:links) Jsoup では通常これを行います。2 つの要素でそれを行うにはどうすればよいでしょうか。のように (要素 link:links ; 要素 link1:h3)
最も簡単な方法は、すべての要素を 1 つのリストに追加し、それを反復処理することです。
links.addAll(h3); for (Element link:links) { //DO your stuff }