Elements nextLinks = doc.select(a[href*=https] || a[href*=http]);
HTTP サイトと HTTPS サイトを接続する必要があります。これどうやってするの?
,
そのためにコンマ区切りを使用します
次のことを行う必要があります
Elements nextLinks = doc.select("a[href*=https] , a[href*=http]");
これを見てください: Selector syntaxとこれ: Use selector-syntax to find elements