使用 Java 如何让 Word 打开并编辑文件?

发布于 2024-11-27 02:24:16 字数 277 浏览 0 评论 0原文

可能的重复:
在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧时浪漫 2024-12-04 02:24:16

这是简单的演示应用程序,您可以将其修改为按钮单击事件:

import java.awt.Desktop;
import java.io.File;
import java.io.IOException;

public class Test {
 public static void main(String[] a) {
   try {
     if (Desktop.isDesktopSupported()) {
       Desktop.getDesktop().open(new File("c:\\a.doc"));
     }
   } catch (IOException ioe) {
     ioe.printStackTrace();
  }
}

}

这将使用默认的 Word 应用程序打开 Word 文件。
有关 桌面 的更多详细信息,请参阅此处

Here is the simple Demo App , you can modify it for button click event :

import java.awt.Desktop;
import java.io.File;
import java.io.IOException;

public class Test {
 public static void main(String[] a) {
   try {
     if (Desktop.isDesktopSupported()) {
       Desktop.getDesktop().open(new File("c:\\a.doc"));
     }
   } catch (IOException ioe) {
     ioe.printStackTrace();
  }
}

}

This would open word file with default word application .
More detail here for Desktop

飞烟轻若梦 2024-12-04 02:24:16

一种方法是执行默认程序通过 shell 打开文档。

在 Windows 上:

Process p = Runtime.getRuntime()
                .exec("rundll32 url.dll,FileProtocolHandler C:/Path/To/Word.doc");
p.waitFor();
System.out.println("Done.");

Mac:

Process p = Runtime.getRuntime().exec("open /Documents/word.doc");

来自 - 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:

Process p = Runtime.getRuntime()
                .exec("rundll32 url.dll,FileProtocolHandler C:/Path/To/Word.doc");
p.waitFor();
System.out.println("Done.");

Mac:

Process p = Runtime.getRuntime().exec("open /Documents/word.doc");

From - http://www.rgagnon.com/javadetails/java-0014.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文