gpt4 book ai didi

java - 从模板创建新文档

转载 作者:行者123 更新时间:2023-12-02 03:19:48 25 4
gpt4 key购买 nike

我想从我的 Java 应用程序中的 MS-Word 模板打开一个新文档,但只能编辑模板本身。

这是我的情况:我的 Jar 文件中有一个 Word 模板,它被复制到用户指定的位置,以便他/她可以编辑它。之后,应用程序可以打开这个编辑过的模板,向其中插入数据并在word中打开它。这一切都工作正常(使用 Apache-POI),但最后一步并不完全是我想要的。

通常,当双击Word模板时,Word会打开一个尚未保存在任何地方的新文档(标题为Document1)。就我而言,Word 将打开用于编辑的单词模板(标题为 blablaMyTemplate),这意味着应使用已保存的模板来创建文档。如何使用 Java 从模板打开新创建的文档?

这是我的代码(省略了 try/catch 和流关闭):

    File bbb = new File(new File(getClass().getProtectionDomain().getCodeSource().getLocation().toURI().getPath()).getParentFile().getParentFile().getAbsolutePath() + "/blablaMyTemplate.dotx");
if (!bbb.exists()) { //copy file to outside of jar for user editing
Files.copy(Buchungsbegleitblatt.class.getResourceAsStream("bbb.dotx"), bbb.toPath(), StandardCopyOption.REPLACE_EXISTING);
}
File tmp = File.createTempFile("bbb", ".dotx"); //create tmp file to insert data
InputStream in = new FileInputStream(bbb);
OutputStream out = new FileOutputStream(tmp);
XWPFDocument document = new XWPFDocument(in);
//here, some data is filled into the document using Apache-POI (omitted, because it works fine)
document.write(out);
if (Desktop.isDesktopSupported()) {
Desktop.getDesktop().open(tmp); //this opens the template for editing, it does not create a new doc from template
}

问题出在最后一行,但我不知道我还能在这里调用什么。

为了让它更清楚一点,这是我在模板文件上获得的上下文菜单的图像以及应该发生的情况:

context menu on template

最佳答案

您已经准确描述了问题。 Desktop.open 将完全按照它所说的进行操作。它将为分配给该文件类型的被调用应用程序执行 open 事件。

您需要执行new 事件。这可以在 Word 中使用 startup command-line switches to start Word 来实现.

在链接的知识库条目中,您可以找到:

...

/ttemplate_name Starts Word with a new document based on a template
other than the Normal template.

...

要使用 Java 执行此操作,可以使用 Runtime.getRuntime().execProcessBuilder。对于这两种情况,我建议首先将命令解释器 CMD 作为 shell 启动,并使用其中的 start 命令来启动应用程序。因此我们不需要知道应用程序的确切路径。

示例:

import java.io.*;

class RuntimeExec {
public static void main(String[] args) {
try {
// Execute a command as a single line
File f = new File("C:/Users/axel/Documents/The Template.dotx");
System.out.println(f.getAbsolutePath());
String cmd = "cmd /C start winword.exe /t\"" + f.getAbsolutePath() + "\"";
Process child = Runtime.getRuntime().exec(cmd);

} catch (IOException e) {
e.printStackTrace();
}

}
}

class UseProcessBuilder {
public static void main(String[] args) {
try {
//use ProcessBuilder to have more control
File f = new File("C:/Users/axel/Documents/The Template.dotx");
System.out.println(f.getAbsolutePath());
String application = "winword.exe";
String switchNewFromTemplate = "/t";
String file = f.getAbsolutePath();
ProcessBuilder pb = new ProcessBuilder("cmd", "/C", "start", application, switchNewFromTemplate+file);
Process process = pb.start();

} catch (IOException e) {
e.printStackTrace();
}
}
}
<小时/>

有一种可能不显式启动 winword 应用程序。如果我们给出空字符串 "" 作为应用程序名称,start 命令具有根据给定文件的文件扩展名执行默认操作的功能:

start """文件名.ext"

示例:

start """文件名.dotx"

这将在 winword 应用程序中执行默认操作 new,该操作与注册表数据库中的 dotx 扩展相关。

所以:

class RuntimeExec {
public static void main(String[] args) {
try {
// Execute a command as a single line
File f = new File("C:/Users/Axel Richter/Documents/The Template.dotx");
System.out.println(f.getAbsolutePath());
String cmd = "cmd /C start \"\" \"" + f.getAbsolutePath() + "\"";
Process child = Runtime.getRuntime().exec(cmd);

InputStream in = child.getErrorStream();
int c;
while ((c = in.read()) != -1) {
System.out.print((char)c);
}
in.close();

} catch (IOException e) {
e.printStackTrace();
}

}
}

class UseProcessBuilder {
public static void main(String[] args) {
try {
//use ProcessBuilder to have more control
File f = new File("C:/Users/Axel Richter/Documents/The Template.dotx");
System.out.println(f.getAbsolutePath());
String file = f.getAbsolutePath();
ProcessBuilder pb = new ProcessBuilder("cmd", "/C", "start", "\"\"", file);
Process process = pb.start();

InputStream in = process.getErrorStream();
int c;
while ((c = in.read()) != -1) {
System.out.print((char)c);
}
in.close();

} catch (IOException e) {
e.printStackTrace();
}
}
}

关于java - 从模板创建新文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39769956/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com