共计 851 个字符,预计需要花费 3 分钟才能阅读完成。
您可以使用 Java 的 java.net.URL
类和 java.io.FileOutputStream
类来下载服务器文件到本地。以下是一个简单的示例代码:
import java.io.FileOutputStream;
import java.io.InputStream;
import java.net.URL;
public class FileDownloader {public static void main(String[] args) {String fileUrl = "http://www.example.com/file.txt";
String savePath = "/path/to/save/file.txt";
try {URL url = new URL(fileUrl);
InputStream in = url.openStream();
FileOutputStream out = new FileOutputStream(savePath);
byte[] buffer = new byte[1024];
int bytesRead;
while ((bytesRead = in.read(buffer)) != -1) {out.write(buffer, 0, bytesRead);
}
in.close();
out.close();
System.out.println("File downloaded successfully.");
} catch (Exception e) {e.printStackTrace();
}
}
}
在上面的示例中,您只需将 fileUrl
设置为要下载的文件的 URL 地址,并将 savePath
设置为要保存文件的本地路径。然后,通过 URL.openStream()
方法打开 URL 的输入流,并使用 FileOutputStream
类将输入流中的数据写入到本地文件中。
请注意,上述代码只适用于下载小文件。如果要下载大文件,应该使用 java.nio.file.Files.copy()
方法来更有效地处理大文件的下载。
丸趣 TV 网 – 提供最优质的资源集合!
正文完