使用 Java 如何让 Word 打开并编辑文件?
可能的重复:
在java中打开Excel文档
我的 Java 应用程序中有一个按钮,单击该按钮时,应该使 Word 打开特定文件。该文件位于文件系统中的某个位置,例如用户的文档目录中。
我怎样才能在Java中实现这样的事情呢?
Possible Duplicate:
Open excel document in java
I have a button in my Java application that, when clicked, should cause Word to open a particular file. This file is residing somewhere in the filesystem, like in a user's documents directory.
How can I implement something like this in Java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是简单的演示应用程序,您可以将其修改为按钮单击事件:
}
这将使用默认的 Word 应用程序打开 Word 文件。
有关 桌面 的更多详细信息,请参阅此处
Here is the simple Demo App , you can modify it for button click event :
}
This would open word file with default word application .
More detail here for Desktop
一种方法是执行默认程序通过 shell 打开文档。
在 Windows 上:
Mac:
来自 - http://www.rgagnon.com/javadetails/java-0014.html
One way is to execute the default program to open the document through the shell.
On Windows:
Mac:
From - http://www.rgagnon.com/javadetails/java-0014.html