我正在使用OpenOffice.org API阅读Open Office电子表格文档。
问题是,我无法停止OpenOffice进程。文档关闭,但进程继续运行(如任务管理器所示)。因此,即使我write(System.exit(1))
,jvm也不存在。我必须在任务管理器中手动结束该过程。
ClassLoader loader = ClassLoader.getSystemClassLoader();
if (loader instanceof URLClassLoader) {
URLClassLoader cl = (URLClassLoader) loader;
Class sysclass = URLClassLoader.class;
try {
Method method = sysclass.getDeclaredMethod("addURL", new Class[]{URL.class});
method.setAccessible(true);
method.invoke(cl, new Object[]{new File(ooBaseDirectory).toURL()});
} catch (Exception e) {
CatchHelper.catchException(e);
}
}
我已经看到了
给出的所有选项http://wiki.openoffice.org/wiki/Documentation/DevGuide/OfficeDev/Closing_Documents
并且还使用了XDesktop.terminate()
选项。
然而,似乎没有任何效果。