/advancerh

System that demonstrates how to scan an internet page in search of information. Written in Java Swing. The page used as a demonstration is a company that shows job vacancies, the program scans the page and captures the vacancies.

Primary LanguageJava

advancerh

System that demonstrates how to scan an internet page in search of information. Written in Java Swing. The page used as a demonstration is a company that shows job vacancies, the program scans the page and captures the vacancies.

Advancerh features:

  • Java Swing
  • Use class URL and BufferedReader to capture the content of the webpage
    • Insert the url

      In package br.com.advancerh class pagina.

      String endereco = "http://www.advancerh.com.br/vagas.php";

      Create attribute BufferedReader

      Will receive the content of the webpage

      private BufferedReader pagina = null;

      Receiving the content of the webage

      URL url = new URL(endereco);

      this.pagina = new BufferedReader(new InputStreamReader(url.openStream()));

      advancerh

      O sistema demonstra como escanear uma pagina da internet. Escrito em java usando a biblioteca gráfica Swing, desenvolvido com uso da IDE NETBEANS. A pagina usada para demonstração é de uma empresa que disponibiliza vagas de trabalho, então o sistema varre a pagina e captura as vagas.

      Advancerh caracteristicas:

      • Java
      • Biblioteca gráfica Swing
      • Usando a classe URL e BufferedReader para capturar o conteúdo da webpage
        • Inserindo a Url

          No pacote br.com.advancerh tem a classe pagina.

          String endereco = "http://www.advancerh.com.br/vagas.php";

          Criando o atributo BufferedReader

          Will receive the content of the webpage

          private BufferedReader pagina = null;

          Recebendo o conteúdo da webpage

          URL url = new URL(endereco);

          this.pagina = new BufferedReader(new InputStreamReader(url.openStream()));