Pular para o conteúdo

Proxy

Olá!

Para conectar à internet programaticamente via um proxy autenticado use o exemplo abaixo.

System.getProperties().put("proxySet", "true");
 System.getProperties().put("proxyHost", "172.1.1.2");
 System.getProperties().put("proxyPort", "8080");
 Authenticator.setDefault(new Authenticator() {
  protected PasswordAuthentication getPasswordAuthentication() {
   return new PasswordAuthentication(
     "Usuario"),"Senha").toCharArray());
  }
 });

URL u = new URL(url);

Até mais,
Roberto

Deixe um comentário

O seu endereço de e-mail não será publicado. Campos obrigatórios são marcados com *