要在Java中將文件下載到本地,可以使用Java的URL類和InputStream類來實現(xiàn)。下面是一個簡單的示例代碼:
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
public class FileDownloader {
public static void main(String[] args) {
String fileUrl = "https://example.com/file.txt";
String savePath = "C:\\downloads\\file.txt";
try {
downloadFile(fileUrl, savePath);
System.out.println("文件下載成功!");
} catch (IOException e) {
e.printStackTrace();
}
}
private static void downloadFile(String fileUrl, String savePath) throws IOException {
URL url = new URL(fileUrl);
try (InputStream inputStream = url.openStream();
FileOutputStream outputStream = new FileOutputStream(savePath)) {
byte[] buffer = new byte[1024];
int bytesRead;
while ((bytesRead = inputStream.read(buffer)) != -1) {
outputStream.write(buffer, 0, bytesRead);
}
}
}
}
在上面的示例中,fileUrl
是要下載的文件的URL地址,savePath
是要保存到本地的路徑。downloadFile
方法使用URL
類打開URL流,并使用FileOutputStream
類將文件寫入本地。通過循環(huán)讀取URL流中的數(shù)據(jù),并將其寫入本地文件,直到達到流的末尾。