-1
私はredditソースコードからjスープを使用してユーザー名を取得しようとしていますが、それをDMにしようとしています。申し訳ありませんが、これは本当に面倒です。このようなJsoupを使用してRedditからユーザー名を引き出そうとしています
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
import java.io.IOException;
public class Main
{
public static void main(String[] args) {
Document doc;
try {
// need http protocol
doc = Jsoup.connect("https://www.reddit.com/new/).get();
// get page title
String title = doc.title();
System.out.println("title : " + title);
// get all links
Document doc = Jsoup.parse("https://www.reddit.com/new");
Elements certainLinks =
doc.select("https://www.reddit.com/user"); {
// get the value from href attribute
{
System.out.println("\nlink : " + link.attr("href"));
System.out.println("text : " + link.text());
}
catch (IOException e) {
e.printStackTrace();
}
}
}
}
あなたの質問は何を持つすべての
a
の要素を意味しますか? – tnwは私にスパムのように聞こえる – efekctive