使用java 写一个get方法下载服务器静态资源得方法 入参是IP下载得文件路径需要是HTTPS协议
要使用Java编写一个通过HTTPS协议下载服务器静态资源的方法,你可以使用Java的HttpURLConnection类来实现。以下是一个示例代码:
import java.io.BufferedInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import javax.net.ssl.HttpsURLConnection;
public class Downloader {
public static void downloadFile(String ip, String filePath) throws IOException {
// 创建URL对象
URL url = new URL("https://" + ip + filePath);
// 打开连接
HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();
// 设置请求方法
connection.setRequestMethod("GET");
// 获取输入流
InputStream inputStream = connection.getInputStream();
// 创建文件输出流
FileOutputStream fileOutputStream = new FileOutputStream("downloaded_file");
// 创建缓冲区
byte[] buffer = new byte[4096];
int bytesRead;
// 从输入流中读取数据,并写入到文件输出流中
while ((bytesRead = inputStream.read(buffer)) != -1) {
fileOutputStream.write(buffer, 0, bytesRead);
}
// 关闭流
fileOutputStream.close();
inputStream.close();
// 断开连接
connection.disconnect();
}
public static void main(String[] args) {
try {
downloadFile("example.com", "/path/to/file");
System.out.println("File downloaded successfully.");
} catch (IOException e) {
e.printStackTrace();
}
}
}
请替换"example.com"和"/path/to/file"为你实际要下载的服务器IP和文件路径。代码中的downloaded_file是下载后保存的文件名,你可以根据需要修改
原文地址: http://www.cveoy.top/t/topic/h1Eb 著作权归作者所有。请勿转载和采集!