私はサイトにログインします (コードの結果が私を示しているので、私は知っています: "Dilema Veche Contul meu Logout Întreb?ri frecvente ... など) 正常にログインしましたが、ログインした Web サイトのリンクをナビゲートできません。クッキーか何かを保持していないようです.何か提案はありますか?ありがとう.
public class art { public static void main(final String[] args) throws IOException {
Response res = Jsoup.connect("http://pay.dilemaveche.ro/autentificare/?redirect=http%3A%2F%2Fdilemaveche.ro%2F%2F&return=true").data("username", "myusername", "password", "mypassword").method(Method.POST).execute();
Map <String, String> cookies = res.cookies();
Document doc = Jsoup.connect("http://pay.dilemaveche.ro/autentificare/?redirect=http%3A%2F%2Fdilemaveche.ro%2F%2F&return=true").cookies(cookies).get();
Elements bck = doc.select("li.first").select("a[href]:contains(Dilema Veche)");
String str = bck.attr("abs:href");
Document doc0 = Jsoup.connect(str).cookies(cookies).get();
System.out.println(doc.text());
}
}