Google App EngineのURLフェッチ機能では、HttpURLConnectionが普通に使える訳ですが、Basic認証が必要なサイトにアクセスしたいと思って以下のように書いてデプロイしたら実行時エラーに。 static { Authenticator.setDefault( new Authenticator(){ @Override protected PasswordAuthentication getPasswordAuthentication() { return new PasswordAuthentication( USER, PASS.toCharArray() ); } }); } 発生したエラーは次の通り。 Caused by: java.security.AccessControlException: access denied (java.net.Net

