在Java中可以使用java.net.URL
和java.io.InputStream
來下載文件內容。以下是一個簡單的示例代碼:
import java.io.BufferedInputStream;
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 = "downloadedFile.txt";
try {
URL url = new URL(fileUrl);
InputStream inputStream = new BufferedInputStream(url.openStream());
FileOutputStream fileOutputStream = new FileOutputStream(savePath);
byte[] buffer = new byte[1024];
int bytesRead;
while ((bytesRead = inputStream.read(buffer)) != -1) {
fileOutputStream.write(buffer, 0, bytesRead);
}
fileOutputStream.close();
inputStream.close();
System.out.println("File downloaded successfully!");
} catch (IOException e) {
e.printStackTrace();
}
}
}
在上面的示例中,我們通過URL
類打開URL連接并獲取輸入流,然后通過FileOutputStream
類將文件內容寫入本地文件。最后,關閉輸入流和輸出流。確保替換fileUrl
和savePath
為你要下載的文件的URL和保存路徑。