Guest User

Untitled

a guest
Jul 17th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. try {
  2. UserAgent userAgent = new UserAgent();
  3. userAgent.openContent("<html><body>Minha Página: <div><b>Veja as minhas fotos.</b></div></body></html>");
  4. Element body = userAgent.doc.findFirst("<body>");
  5.  
  6. System.out.println("Texto do body: " + body.getChildText()); // apenas os textos do body
  7. System.out.println("Todos os Textos do body: " + body.innerText()); // junta todos os textos do body
  8. } catch(JauntException e) {
  9. System.err.println(e);
  10. }
Add Comment
Please, Sign In to add comment