我下载的文件是3,855,549字节,当我尝试使用下面的代码下载时,它总是短缺一个字节到3,855,548。我完全不知道为什么会发生这种情况,我看过API无济于事。没有任何东西被抛出,任何帮助都会受到赞赏。
website = new URL(link);
Path path = Paths.get(System.getProperty("user.home") + File.separator + "java_file.jar");
try (InputStream IS = website.openStream()) {
Files.copy(IS, path, StandardCopyOption.REPLACE_EXISTING);
}