如何在jsoup中使用OR操作?

时间:2012-12-10 13:56:16

标签: java jsoup

Elements nextLinks = doc.select(a[href*=https] || a[href*=http]);

我需要连接HTTP以及HTTPS站点。我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

使用,逗号分隔符

以下内容应该

Elements nextLinks = doc.select("a[href*=https] , a[href*=http]");

请看一下:Selector syntax和此:Use selector-syntax to find elements