使用用户名/密码身份验证读取HTTPS页面并忽略certifiacte

时间:2017-05-06 11:44:55

标签: java http curl https httpurlconnection

我需要从HTTPS页面读取一些具有本地证书并需要用户名/密码验证的数据。

使用“HttpURLConnection”,是否可以进行用户名/密码验证并导入本地证书或忽略它?

非常感谢,

1 个答案:

答案 0 :(得分:0)

尝试使用它。为我工作。

private void authenticadorRedeTendencia() {
        Authenticator.setDefault(new Authenticator() {
            @Override
            protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication(userName(), password.toCharArray());
            }
        });
    }