0

我正在尝试使用 jacob 打开 Microsoft Word 文档。

下面是代码:

import com.jacob.activeX.ActiveXComponent;
import com.jacob.com.ComThread;
import com.jacob.com.Dispatch;
import com.jacob.com.Variant;
public class openWordDocument {
    private static final Integer wdNewBlankDocument = new Integer(0);
    private static final Variant vTrue = new Variant(true);
    private static final Variant vFalse = new Variant(false);
    private static ActiveXComponent activeXWord = null;
    private static Object activeXWordObject = null;

    public static void main(String[] args) {
    try {
    activeXWord = new ActiveXComponent("Word.Application");
    activeXWordObject = activeXWord.getObject();
    Dispatch.put(activeXWordObject, "Visible", vTrue);

    //activeXWordObject = null;

    }
    catch (Exception e) {
    quit();
    }
    }

    public static void quit() {
    if (activeXWord != null) {
    System.out.println("quit word");
    //calls the Quit method of MS Word, this will close MS Word
    activeXWord.invoke("Quit", new Variant[] {});
    ComThread.Release();
    activeXWord.release();
    System.out.println("quit word");
    }
    }

}

当我在上面运行代码时出现错误Error: Could not find or load main class openWordDocument

4

2 回答 2

1

这是我的错误,我在类路径中添加了 .dll 文件,所以我无法编译 java 文件。之后我删除了那个 dll 文件,jvm 开始编译并能够精细化类文件。

于 2012-07-21T05:37:45.203 回答
0

警告 !!!

检查您的外部库(例如 .jar 文件)路径是否已添加到您的项目中。路径应具有常规格式。例如,它不应该有特殊字符,如“+”、...或空格。

我之前在 Eclipse IDE 中遇到过这个严重的问题,更改我的项目库的路径目录,然后一切都好起来了。

于 2012-08-19T20:42:58.440 回答