标签: java https httpclient
假设我要连接到https://www.code.com/secure/test.xml并提取所有数据。在允许我提取所述数据之前,它会提示我输入我的凭据。
如何使用java处理此问题?我已经用Google搜索并登陆了Appache httpClient,但无法在https上找到任何内容。
答案 0 :(得分:0)
快速搜索显示:
http://docs.oracle.com/javase/7/docs/technotes/guides/net/http-auth.html
所以你可能需要设置默认的Authenticator:
http://docs.oracle.com/javase/7/docs/api/java/net/Authenticator.html#setDefault%28java.net.Authenticator%29