你可以使用Java中的URLConnection類來下載文件。以下是一個簡單的示例代碼:
import java.io.*;
import java.net.URL;
import java.net.URLConnection;
public class FileDownloader {
public static void main(String[] args) {
String fileUrl = "https://www.example.com/file.txt";
String destination = "path/to/save/file.txt";
try {
URL url = new URL(fileUrl);
URLConnection conn = url.openConnection();
try (InputStream in = conn.getInputStream();
FileOutputStream out = new FileOutputStream(destination)) {
byte[] buffer = new byte[4096];
int bytesRead;
while ((bytesRead = in.read(buffer)) != -1) {
out.write(buffer, 0, bytesRead);
}
}
System.out.println("File downloaded successfully!");
} catch (IOException e) {
e.printStackTrace();
}
}
}
在這個示例中,我們首先指定要下載的文件的URL和要保存的本地路徑。然后,我們使用URL類打開連接并獲取輸入流。接著,我們創建一個輸出流來寫入文件,并循環讀取輸入流中的數據并寫入輸出流中。最后,我們關閉輸入流和輸出流,并打印出文件下載成功的消息。