您可以使用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()
方法來更有效地處理大文件的下載。