在Java中,可以使用java.net.URL
類來下載文件。下面是一個簡單的示例代碼:
import java.io.BufferedInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.net.URL;
public class FileDownloader {
public static void downloadFile(String fileUrl, String savePath) throws IOException {
URL url = new URL(fileUrl);
BufferedInputStream inputStream = new BufferedInputStream(url.openStream());
FileOutputStream outputStream = new FileOutputStream(savePath);
byte[] buffer = new byte[1024];
int bytesRead;
while ((bytesRead = inputStream.read(buffer, 0, 1024)) != -1) {
outputStream.write(buffer, 0, bytesRead);
}
outputStream.close();
inputStream.close();
}
public static void main(String[] args) {
String fileUrl = "https://example.com/file.txt";
String savePath = "/path/to/save/file.txt";
try {
downloadFile(fileUrl, savePath);
System.out.println("文件下載完成");
} catch (IOException e) {
e.printStackTrace();
}
}
}
在上面的示例代碼中,downloadFile
方法接受文件的URL和保存的路徑作為參數,通過URL
類打開輸入流并使用BufferedInputStream
進行緩沖讀取,然后使用FileOutputStream
寫入到指定的文件中。最后,關閉輸入流和輸出流。
在main
方法中,你可以替換fileUrl
和savePath
為你要下載的文件的URL和保存的路徑。