在Eclipse RCP应用程序上使用OLE,Java保存Excel文件

时间:2013-01-07 09:56:47

标签: java eclipse excel eclipse-rcp ole

我尝试保存Excel文件。 Excel文件是带有makros(* .xltm)的模板。我可以打开文件并编辑内容,但如果我尝试保存目标Excel文件已损坏。 我尝试用以下文件保存文件:

int id = _workbook.getIDsOfNames(new String[] {"Save"})[0];
_workbook.invoke(id);

或/和

_xlsClientSite.save(_file, true);

1 个答案:

答案 0 :(得分:1)

您可以尝试在保存通话中指定文件格式。

如果幸运的话,您可以在Excel帮助中找到所需的文件格式代码。如果你在那里找不到你需要的东西,你将不得不使用 OLEVIEW.EXE 程序来解决问题。可能有一个副本位于你的硬盘驱动器上,但如果没有,很容易找到一个快速谷歌搜索副本。

使用 OLEVIEW.EXE

  • 运行它
  • 破解“类型库”条目
  • 找到您正在使用的Excel版本
  • 打开该项目
  • 搜索为字符串'XlFileFormat'
  • 显示的大量文本
  • 检查XLFileFormat枚举以获取看似有希望的代码

如果你像我一样使用Office2007(“Excel12”),你可以试试其中一个值:

  • xlOpenXMLWorkbookMacroEnabled = 52
  • xlOpenXMLTemplateMacroEnabled = 53

这是我用于使用OLE保存Excel文件的方法:

/**
 * Save the given workbook in the specified format.
 * 
 * @param controlSiteAuto the OLE control site to use
 * @param filepath the file to save to
 * @param formatCode XlFileFormat code representing the file format to save as
 * @param replaceExistingWithoutPrompt true to replace an existing file quietly, false to ask the user first
 */
public void saveWorkbook(OleAutomation controlSiteAuto, String filepath, Integer formatCode, boolean replaceExistingWithoutPrompt) {
    Variant[] args = null;
    Variant result = null;
    try {
        // suppress "replace existing?" prompt, if necessary
        if (replaceExistingWithoutPrompt) {
            setPropertyOnObject(controlSiteAuto, "Application", "DisplayAlerts", "False");
        }

        // if the given formatCode is null, for some reason, use a reasonable default
        if (formatCode == null) {
            formatCode = 51;    // xlWorkbookDefault=51
        }

        // save the workbook
        int[] id = controlSiteAuto.getIDsOfNames(new String[] {"SaveAs", "FileName", "FileFormat"});
        args = new Variant[2];
        args[0] = new Variant(filepath);
        args[1] = new Variant(formatCode);
        result = controlSiteAuto.invoke(id[0], args);

        if (result == null || !result.getBoolean()) {
            throw new RuntimeException("Unable to save active workbook");
        }

        // enable alerts again, if necessary
        if (replaceExistingWithoutPrompt) {
            setPropertyOnObject(controlSiteAuto, "Application", "DisplayAlerts", "True");
        }
    } finally {
        cleanup(args);
        cleanup(result);
    }
}

protected void cleanup(Variant[] variants) {
    if (variants != null) {
        for (int i = 0; i < variants.length; i++) {
            if (variants[i] != null) {
                variants[i].dispose();
            }
        }
    }
}