下载使用 Java 中的用户名和密码保护的文件时出现 IOException
IOException when downloading file that is secured with username and password in Java
问题:
我想以给定的时间间隔下载我们学校服务器上的文件。我想访问的 .xml 文件位于登录名后面,但至少在浏览器中,您可以通过修改 URL:
来访问该文件而无需使用登录名
https://username:password@subdomain.domain.net/xmlFile.xml
但是 Java 如果我想访问该页面,则会抛出 IOException。 this W3 example 等其他文件没有任何问题。
我当前用于下载文件的代码如下所示:
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder docBuilder = dbf.newDocumentBuilder();
URL webServer = new URL(url);
//url is the specified address I want to access.
InputStream stream = webServer.openStream();
Document xmlDatei = docBuilder.parse(stream);
return xmlDatei
问题:
我可以使用特殊的参数或函数来防止这种情况发生吗?
尝试使用 Basic Authentication 访问您的文件。
String webPage = "http://www.myserver.com/myfile.xml";
String name = "username";
String password = "password";
String authString = name + ":" + password;
byte[] authEncBytes = Base64.encodeBase64(authString.getBytes());
String authStringEnc = new String(authEncBytes);
URL url = new URL(webPage);
URLConnection urlConnection = url.openConnection();
urlConnection.setRequestProperty("Authorization", "Basic " + authStringEnc);
try (InputStream stream = urlConnection.getInputStream()) {
// preparation steps to use docBuilder ....
Document xmlDatei = docBuilder.parse(stream);
}
问题:
我想以给定的时间间隔下载我们学校服务器上的文件。我想访问的 .xml 文件位于登录名后面,但至少在浏览器中,您可以通过修改 URL:
来访问该文件而无需使用登录名https://username:password@subdomain.domain.net/xmlFile.xml
但是 Java 如果我想访问该页面,则会抛出 IOException。 this W3 example 等其他文件没有任何问题。
我当前用于下载文件的代码如下所示:
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder docBuilder = dbf.newDocumentBuilder();
URL webServer = new URL(url);
//url is the specified address I want to access.
InputStream stream = webServer.openStream();
Document xmlDatei = docBuilder.parse(stream);
return xmlDatei
问题:
我可以使用特殊的参数或函数来防止这种情况发生吗?
尝试使用 Basic Authentication 访问您的文件。
String webPage = "http://www.myserver.com/myfile.xml";
String name = "username";
String password = "password";
String authString = name + ":" + password;
byte[] authEncBytes = Base64.encodeBase64(authString.getBytes());
String authStringEnc = new String(authEncBytes);
URL url = new URL(webPage);
URLConnection urlConnection = url.openConnection();
urlConnection.setRequestProperty("Authorization", "Basic " + authStringEnc);
try (InputStream stream = urlConnection.getInputStream()) {
// preparation steps to use docBuilder ....
Document xmlDatei = docBuilder.parse(stream);
}