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

HTTP サイトと HTTPS サイトを接続する必要があります。これどうやってするの?

4

1 に答える 1

1

,そのためにコンマ区切りを使用します

次のことを行う必要があります

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

これを見てください: Selector syntaxとこれ: Use selector-syntax to find elements

于 2012-12-10T15:03:35.157 に答える