共计 905 个字符,预计需要花费 3 分钟才能阅读完成。
要在 Java 中将文件下载到本地,可以使用 Java 的 URL 类和 InputStream 类来实现。下面是一个简单的示例代码:
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
类将文件写入本地。通过循环读取 URL 流中的数据,并将其写入本地文件,直到达到流的末尾。
丸趣 TV 网 – 提供最优质的资源集合!
正文完