jsoup

Come navigare siti web utilizzando Jsoup in java

Come posso navigare (come il web crawling) in Jsoup su un link diverso? Per questo esempio ho fatto le basi per ottenere il ... } } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }

Cercando di compilare un modulo sito web utilizzando Java, ma il tag modulo è incorporato nel tag iframe

Il mio obiettivo è accedere a questo URL http://eaacorp.com/find-a-dealer e compilare un modulo utilizzando java. Per fare ... RL = iframeEl.getSrc();//DOES NOT COMPILE, getSrc() is not a method Document embedDoc = Jsoup.connect(embedURL).get(); }

Java: Come posso usare JSoup per leggere i dati da questo sito web? E come faccio a trovare cose come tag e classi? [chiuso]

Sto cercando di leggere il nome pokemon e le coordinate da ogni colonna da questo sito ( http://pokesniper.boosting-service.d ... i anche spiegare come hai ottenuto i tag e gli ID in modo che possa imparare più velocemente e sapere per riferimento futuro.

Strano java.lang.ExceptionInInitializerError-JSoup

Nel mio nuovo progetto uso JSoup per recuperare una pagina Web, ottenere tutti gli elementi con la classe ".heads " e quindi ... me renderla una libreria, quindi ho preso le fonti e l'ho inserita nel mio progetto. Grazie per qualsiasi aiuto in anticipo!

Java Jsoup scaricare file torrent

Ho un problema, voglio collegarmi a questo sito web (https://ww2.yggtorrent.is ) per scaricare il file torrent. Ho creato un ... ("toto.torrent"))); out.write(resultImageResponse.bodyAsBytes()); out.close(); Ho provato molte cose ma ora non ne ho idea.

Java Tirare i dati della tabella dal sito?

Nuovo in Java e di recente ho iniziato a imparare a leggere HTML da un sito Web utilizzando Java, ma ho cercato di imparare c ... -14 07:25 PM</a></td> Quello che vorrei fare alla fine è tirare questi dati nella mia GUI o qualcosa del genere

Come pubblicare e ottenere dati-JSOUP JAVA

Ragazzi Sto cercando di inviare il metodo post a https://www.servientrega.com/wps/portal/Colombia/transacciones-personas/ras ... ho provato println(document): Immagine con il risultato quello che ho ottenuto Inserisci la descrizione dell'immagine qui

Come automatizzare l'accesso a Gmail per utilizzare HttpsURLConnection e Jsoup in Java 8

Sto cercando come automatizzare l'accesso a un sito https che ha un modulo che ho bisogno di invocare in seguito. Mi sono imb ... okies() { return cookies; } public void setCookies(List<String> cookies) { this.cookies = cookies; } }

DataScraping utilizzando Jsoup in java

Sto sviluppando un programma java per raschiare i dati da un sito specifico. Sto usando jSoup come modulo java. Http://data ... m.out.println(tds); } } } catch (IOException e) { e.printStackTrace(); } Qualche aiuto? raschiare i dati

Estrarre il testo dal file html utilizzando java

Sto lavorando su un crawler di testo e ho bisogno di estrarre un certo testo da diversi siti. Ho usato jsoup html parser: D ... .select("p dir=rtl");, restituisce un errore di compilazione. C'è un modo per farlo basta selezionare questo tag desiderato?

Парсинг сайта в java с помощью jsoup

Решил написать простенькую телепрограмму с использованием jsoup. Задача более чем скучная, но для меня н ... спарсить расписание с первого канала на странице. И может быть вы считаете, что jsoup полная лажа посоветуйте другой.

Parsing HTML in Java with Jsoup

How can I get 56,4115 from here: <td class="weak"> <ins class="rubl">руб.</ins>&nbsp; 56,4115 &l ... entsByAttributeValue("class", "weak"); tdElements.forEach(tdElement -> { Element insElement = tdElement.child(1); });

Java Jsoup, how to leave " as & quot

I need to download an html document using Jsoup, but at the same time so that the characters that are written in the code rem ... doc.outputSettings().escapeMode(Entities.EscapeMode.extended); doc.outputSettings().prettyPrint(false); But it doesn't help.

Error parser (Exception in thread "main" java. net. SocketTimeoutException: connect timed out)

I write a simple parser. Depending on the site, an error pops up. If the site is https://, then everything seems to be fine. ... nts els = doc.select("a"); for(Element link : els) { System.out.println(link.text()); } } }

Java and Jsoup help

Here is my code public static void main(String[] args) throws IOException { Document doc = Jsoup.connect("https://elited ... p.send();</script> </body> </html> Please explain what the problem is(the code comes from other sites)?