通过Java写一段可以下载word模板的代码
以下是Java代码示例,用于从URL下载Word模板文件:
import java.io.InputStream;
import java.io.FileOutputStream;
import java.net.URL;
import java.net.URLConnection;
public class DownloadWordTemplate {
public static void main(String[] args) {
String url = "https://example.com/template.docx";
String saveTo = "template.docx";
downloadWordTemplate(url, saveTo);
}
public static void downloadWordTemplate(String url, String saveTo) {
try {
URLConnection conn = new URL(url).openConnection();
InputStream in = conn.getInputStream();
FileOutputStream out = new FileOutputStream(saveTo);
byte[] buffer = new byte[1024];
int len;
while ((len = in.read(buffer)) != -1) {
out.write(buffer, 0, len);
}
out.close();
in.close();
System.out.println("Word template downloaded successfully!");
} catch (Exception e) {
System.out.println("Failed to download Word template: " + e.getMessage());
}
}
}
在此示例中,我们使用java.net.URL和java.net.URLConnection类来打开URL连接并获取输入流。然后,我们使用java.io.FileOutputStream类将输入流写入本地文件。最后,我们关闭输入和输出流,并在控制台上输出成功或失败消息。您可以根据需要更改文件名和路径
原文地址: https://www.cveoy.top/t/topic/em7G 著作权归作者所有。请勿转载和采集!