2

Apache 孵化项目ODFDOM允许用户以编程方式读取和创建各种开放文档格式文件,包括电子表格。

我正在尝试使用他们重新设计的“简单 API”为我正在创建的电子表格设置各种打印选项,但是似乎他们还没有公开一种简单的方法来修改文档属性,例如页边距、页面大小(高度/width)和页面方向(横向/纵向)。

我需要从SpreadsheetDocument获取允许我修改这些值的东西。

4

1 回答 1

3

可以对 SpreadsheetDocument 提供访问的一些基础 ODF 对象进行必要的调用。首先,我们需要获取正确的文档属性引用(对于所有示例,“电子表格”是对创建的电子表格文档的引用):

    StyleMasterPageElement defaultPage = spreadsheet.getOfficeMasterStyles().getMasterPage("Default");
    String pageLayoutName = defaultPage.getStylePageLayoutNameAttribute();
    OdfStylePageLayout pageLayoutStyle = defaultPage.getAutomaticStyles().getPageLayout(pageLayoutName);
    PageLayoutProperties pageLayoutProps = PageLayoutProperties.getOrCreatePageLayoutProperties(pageLayoutStyle);

然后,我们可以设置各种属性,例如边距、方向和高度/宽度。请注意,页面方向值似乎需要高度和宽度值才能正常工作,并且高度广告宽度需要是所使用方向的高度和宽度:

    pageLayoutProperties.setPageHeight(pageHeightInMM);
    pageLayoutProperties.setPageWidth(pageWidthInMM);
    pageLayoutProperties.setPrintOrientation(PrintOrientation.LANDSCAPE);
    pageLayoutProperties.setMarginLeft(leftMarginInMM);
    pageLayoutProperties.setMarginRight(rightMarginInMM);
    pageLayoutProperties.setMarginTop(topMarginInMM);
    pageLayoutProperties.setMarginBottom(bottomMarginInMM);

我基于另一位开发人员关于如何使用原始 ODFDOM API 执行此操作的说明,并且能够使用此代码成功更改生成的文档的属性。

于 2013-08-07T16:15:34.720 回答