用Java写一个 从服务器获取文件的代码
时间: 2024-04-12 19:32:48 浏览: 82
从服务器上下载文件代码实现
4星 · 用户满意度95%
当然,下面是一个使用 Java 从服务器获取文件的示例代码:
```java
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/file.txt";
String savePath = "path/to/save/file.txt";
try {
URL url = new URL(fileUrl);
URLConnection connection = url.openConnection();
InputStream inputStream = connection.getInputStream();
FileOutputStream outputStream = new FileOutputStream(savePath);
byte[] buffer = new byte[4096];
int bytesRead;
while ((bytesRead = inputStream.read(buffer)) != -1) {
outputStream.write(buffer, 0, bytesRead);
}
outputStream.close();
inputStream.close();
System.out.println("文件下载完成!");
} catch (Exception e) {
System.out.println("文件下载失败:" + e.getMessage());
}
}
}
```
请将 `fileUrl` 替换为要下载的文件的 URL,将 `savePath` 替换为要保存文件的路径和文件名。执行该代码后,它将从指定的 URL 下载文件并保存到本地。
阅读全文