- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 pdfbox 和 easytable https://github.com/vandeseer/easytable用于创建效果很好的动态页面。但我确实希望在所有页面中添加标题。我面临/尝试过以下事情。
1) Tablebuilder is created before writing rows so we can create a perfect tablebuilder since rows are dynamic.
2) Tried to insert header in middle while creating tablebuilder which again is not perfect since TableDrawer makes the rows to suffice according to row height
任何想法/帮助将不胜感激。
需要类似于此项目的输出 - https://github.com/eduardohl/Paginated-PDFBox-Table-Sample 。这里唯一的问题是内容不像 easytable 那样是动态的。
最佳答案
作为 @mkl 的答案及其评论的补充:在当前版本的库中,有一个自己的类可以满足这一要求。
所以你的代码基本上可以归结为:
try (final PDDocument document = new PDDocument()) {
RepeatedHeaderTableDrawer.builder()
.table(createTable())
.startX(50)
.startY(100F)
.endY(50F) // note: if not set, table is drawn over the end of the page
.build()
.draw(() -> document, () -> new PDPage(PDRectangle.A4), 50f);
document.save("your-awesome-document.pdf");
}
关于java - PDFBOX - 使用 easytable 的所有页面中的页眉,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54233886/
我正在使用你们的 EasyTable 库,它非常棒,对我来说它比 itext7 更好。我只有一个问题。我试图在单元格内插入一个多行段落,但它给了我一个错误。这是我的类(class)。 错误是:
主题中的所有信息 - 我可以使用 PDF 库“easytable”在单元格内插入表格吗?如果"is"-我该怎么做? 谢谢。 最佳答案 may I insert table within cell? 嗯
我有以下方法可以在 easytable 中创建表头 ( easytable ) public void addHeader(){ myTable = Table.builder()
是否可以修改 Easytable Azure 中的数据? 例如,我想将第一行的文本更改为“testing 23/2”。怎么做?另外,我想将删除从 true 更改为 false。知道该怎么做吗? 最佳答
我正在使用 pdfbox 和 easytable https://github.com/vandeseer/easytable用于创建效果很好的动态页面。但我确实希望在所有页面中添加标题。我面临/尝试
我似乎找不到可以帮助我截断在 Azure 应用服务中创建的 easytable 的方法。 截断表的最有效方法是什么? 我目前正在为 Windows 通用应用程序使用 C#/XAML。 最佳答案 您无法
使用 EasyTables 和 Node.js 后端在 Azure 中创建移动应用后,我在尝试发布新项目时收到 HTTP 500 错误。 最佳答案 登录Azure控制台并在项目后端运行: npm i
我是一名优秀的程序员,十分优秀!