0

我想在 Java 小程序中进行简单的 HTTP 身份验证,我正在尝试这种方式:

static class MyAuthenticator extends Authenticator
        {
            public PasswordAuthentication getPasswordAuthentication()
                {
            // I haven't checked getRequestingScheme() here, since for NTLM
            // and Negotiate, the usrname and password are all the same.
            System.err.println("Feeding username and password for " + getRequestingScheme());
            return (new PasswordAuthentication(kuser, kpass.toCharArray()));
            }
        }
    public void paint(Graphics g) {
        try
        {
        //  String authenticate=Authenticator.getPasswordAuthentication();
             Authenticator.setDefault(new MyAuthenticator());
             URL url = new URL("http://Ip_address/jpg/image.jpg");
             InputStream ins = url.openConnection().getInputStream();
             BufferedReader reader = new BufferedReader(new InputStreamReader(ins));
             String str;
               while((str = reader.readLine()) != null)
                  System.out.println(str);

          //int s=2+2;

            g.drawString("hello world", 50, 60 );
        }
        catch (Exception e)
        {
            System.out.println("Exception : "+ e);
        }
    }

但我在这一行遇到错误

Authenticator.setDefault(new MyAuthenticator());

例外是:

Exception : java.security.AccessControlException: access denied 
    (java.net.NetPermission setDefaultAuthenticator)

谁能告诉我现在该做什么,或者如何从 Java 小程序验证一个网站?

4

1 回答 1

1

您遇到了安全沙盒限制。显然,对于不受信任的小程序来说,更改默认身份验证器是一个安全问题。(我想这是因为讨厌的小程序可以使用它来窃取用户提供的身份验证详细信息。)

无论限制的原因是什么,一种解决方案是为您的小程序签署 JAR 文件。有关详细信息,请参阅Oracle 教程的此页面

于 2012-06-07T14:14:05.993 回答