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/nQKk 著作权归作者所有。请勿转载和采集!