gpt4 book ai didi

java - 使用Aspose Word在多页中显示表标题

转载 作者:行者123 更新时间:2023-12-01 09:44:12 38 4
gpt4 key购买 nike

目前我正在使用 Java 中的 Aspose Words 导出报告。我正在用动态数据填充表,但我的主要问题是当数据到达下一页时,导出的文档中没有标题。如何获取导出文件中所有页面的标题。任何建议将不胜感激。

最佳答案

我们可以通过以下方式在JAVA中解决这个问题:

1.加载文档

Document doc =  new Document(getMyDir() + "Table.SimpleTable.doc");

2.获取第一个表

Table table = doc.getChild(NodeType.TABLE, 0, true); //i.e. second   parenthesis as index of table in doc file

3.获取用于表标题的行

Row rows = (Row) table.getRows().get(0);//we can set multiple rows as heading by passing it's index

4.将行设置为 HeadingFormat = true

rows.getRowFormat().setHeadingFormat(true);

关于java - 使用Aspose Word在多页中显示表标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38202090/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com