我需要从HTTPS页面读取一些具有本地证书并需要用户名/密码验证的数据。
使用“HttpURLConnection”,是否可以进行用户名/密码验证并导入本地证书或忽略它?
非常感谢,
答案 0 :(得分:0)
尝试使用它。为我工作。
private void authenticadorRedeTendencia() {
Authenticator.setDefault(new Authenticator() {
@Override
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(userName(), password.toCharArray());
}
});
}