HttpURLConnectionを作成し、URL にユーザー名とパスワードを追加することで実現できます。として:
URL myURL = new URL("http://192.168.1.2:8082/index.cgi?username=user&password=");
HttpURLConnection myConnection = (HttpURLConnection) myURL.openConnection();
myConnection.setDoOutput(false);
int status = ((HttpURLConnection) myConnection).getResponseCode();
別の方法として (ユーザー名/パスワードを URL に追加する代わりに)、(アプレットで許可されているかどうかはわかりませんが) 次のように http 要求のデフォルトのオーセンティケーターを設定してみてください:
Authenticator.setDefault (new Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication ("username", "password".toCharArray());
}
});
非常に使いやすいApache HttpComponents HttpClientを使用することもできます。Java で HTTP リクエストがどのように機能するかについて詳しくは、この回答を参照してください。