我需要连接到需要用户名/密码的远程服务器,需要下载视频和其他pdf文档。 java中最好的方法是什么?一些代码示例将非常值得注意。我试着跟随,如果这个代码看起来像是一个新手,因为我刚刚开始使用Java并且从像你这样的大师那里学习最佳实践,我提前接受道歉。问题是如何进行身份验证,如何为服务器提供用户名/密码。
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
public class Downloader {
URL url;
public Downloader(){
try {
url = new URL("https://d396qusza40orc.cloudfront.net/algs4partI/slides%2F13StacksAndQueues.pdf");
try {
URLConnection con = url.openConnection();
con.connect();
InputStream inStream = url.openStream();
FileOutputStream outStream = new FileOutputStream("data.dat");
int bytesRead;
byte[] buffer = new byte[100000];
while((bytesRead = inStream.read(buffer)) > 0){
outStream.write(buffer, 0 , bytesRead);
buffer = new byte[100000];
}
outStream.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public static void main(String[] args){
Downloader d = new Downloader();
}
}
答案 0 :(得分:1)
您应该能够在网址中提供用户名/密码:
E.g。
https://username:password@example.com/secure/myfile.pdf
这确实假设该站点正在使用标准HTTP身份验证。
如果正在进行某种自定义身份验证,您可能需要在尝试下载文件之前提供包含身份验证信息的每个生成的Cookie,或者可能需要执行单独的登录请求。这将取决于远程服务器的设置。