Guest User

Untitled

a guest
Jan 15th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. package web.crawler;
  2.  
  3. import com.gargoylesoftware.htmlunit.WebClient;
  4. import com.gargoylesoftware.htmlunit.html.HtmlForm;
  5. import com.gargoylesoftware.htmlunit.html.HtmlPage;
  6. import com.gargoylesoftware.htmlunit.html.HtmlPasswordInput;
  7. import com.gargoylesoftware.htmlunit.html.HtmlSubmitInput;
  8. import com.gargoylesoftware.htmlunit.html.HtmlTextInput;
  9. import java.io.IOException;
  10.  
  11. /**
  12. *
  13. * @author ethan
  14. */
  15. public class WebCrawler {
  16.  
  17. /**
  18. * @param args the command line arguments
  19. * @throws java.io.IOException
  20. */
  21. public static void main(String[] args) throws IOException {
  22. HtmlPage page3;
  23. WebClient webClient = new WebClient();
Add Comment
Please, Sign In to add comment