如何使用 Java 下载文件的一部分?

发布于 2024-10-01 13:37:01 字数 719 浏览 3 评论 0原文

我正在使用这段 Java 代码从 Internet 下载文件:

String address = "http://melody.syr.edu/pzhang/publications/AMCIS99_vonDran_Zhang.pdf";
URL url = new URL(address);
System.out.println("Opening connection to " + address + "...");
URLConnection urlC = url.openConnection();
urlC.setRequestProperty("User-Agent", "");
urlC.connect();
InputStream is = urlC.getInputStream();
FileOutputStream fos = null;
fos = new FileOutputStream("myFileName");
int oneChar, count = 0;
while ((oneChar = is.read()) != -1) {
    System.out.print((char)oneChar);
    fos.write(oneChar);
    count++;
}
is.close();
fos.close();
System.out.println(count + " byte(s) copied");

我想知道是否有办法只下载文件的一部分。 例如,对于 5MB 的文件,下载最后 2MB。

I'm using this Java code to download a file from the Internet:

String address = "http://melody.syr.edu/pzhang/publications/AMCIS99_vonDran_Zhang.pdf";
URL url = new URL(address);
System.out.println("Opening connection to " + address + "...");
URLConnection urlC = url.openConnection();
urlC.setRequestProperty("User-Agent", "");
urlC.connect();
InputStream is = urlC.getInputStream();
FileOutputStream fos = null;
fos = new FileOutputStream("myFileName");
int oneChar, count = 0;
while ((oneChar = is.read()) != -1) {
    System.out.print((char)oneChar);
    fos.write(oneChar);
    count++;
}
is.close();
fos.close();
System.out.println(count + " byte(s) copied");

I'd like to know if there is a way for me to download only a part of a file.
For example, for a 5MB file to download the last 2MB.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笛声青案梦长安 2024-10-08 13:37:01

如果服务器支持(HTTP 1.1 服务器应该),您可以使用范围请求:

http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35

此外,一次读取一个字符的效率非常低 -您应该以块为单位进行读取,例如 4、16 或 32 KB。

If the server supports it (and HTTP 1.1 servers should), you can use range requests:

http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35

Also, reading one character at a time is hugely inefficient - you should be reading in blocks, say 4, 16 or 32 KB.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文