目前,我正在使用Java中的Aspose Words导出报告。我正在使用动态数据填充表,但我的主要问题是当数据到达下一页时导出的文档中没有标题。如何获取导出文件中所有页面的标题。任何建议将不胜感激。
答案 0 :(得分:1)
我们可以通过以下方式在 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);
答案 1 :(得分:0)