在Java中,可以使用流式處理來(lái)下載大文件而不會(huì)消耗過(guò)多內(nèi)存。以下是一種常見(jiàn)的方法:
以下是一個(gè)示例代碼:
import java.io.BufferedInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.net.URL;
import java.net.URLConnection;
public class FileDownloader {
public static void main(String[] args) {
String fileUrl = "http://example.com/largefile.zip";
String localFilePath = "C:/downloads/largefile.zip";
try {
URL url = new URL(fileUrl);
URLConnection conn = url.openConnection();
InputStream in = new BufferedInputStream(conn.getInputStream());
FileOutputStream out = new FileOutputStream(localFilePath);
byte[] buffer = new byte[1024];
int bytesRead;
while ((bytesRead = in.read(buffer)) != -1) {
out.write(buffer, 0, bytesRead);
}
out.close();
in.close();
System.out.println("File downloaded successfully.");
} catch (Exception e) {
e.printStackTrace();
}
}
}
在上面的示例中,我們使用了緩沖區(qū)將文件數(shù)據(jù)逐塊讀取到內(nèi)存中,并寫(xiě)入輸出流中,這樣可以防止內(nèi)存溢出。通過(guò)逐塊處理數(shù)據(jù),可以有效下載大文件而不會(huì)耗盡內(nèi)存。