为啥itextpdf 在生成pdf 的时候 取表格高度为0
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为啥itextpdf 在生成pdf 的时候 取表格高度为0相关的知识,希望对你有一定的参考价值。
参考技术A 检查下有没有document.newPage()使得把数据放到下一页了。如果没有,那就需要分析代码。但是换种思路也能解决你问题:
把数据作为附件一,附件二等形式生成在pdf的最后,那样就没人关注pdf内容的空白了。
用iText生成PDF文档需要5个步骤:
①建立com.lowagie.text.Document对象的实例。
Document document = new Document();
②建立一个书写器(Writer)与document对象关联,通过书写器(Writer)可以将文档写入到磁盘中。
PDFWriter.getInstance(document, new FileOutputStream("Helloworld.PDF"));
③打开文档。
document.open();
④向文档中添加内容。
document.add(new Paragraph("Hello World"));
⑤关闭文档。
document.close();
通过上面的5个步骤,就能产生一个Helloworld.PDF的文件,文件内容为"Hello World"。
建立com.lowagie.text.Document对象的实例
com.lowagie.text.Document对象的构建函数有三个,分别是:
public Document();
public Document(Rectangle pageSize);
public Document(Rectangle pageSize,
int marginLeft,
int marginRight,
int marginTop,
int marginBottom);本回答被提问者和网友采纳
itextpdf FormField 生成pdf修改字体大小
使用itextpdf FormField 生成pdf 的时候我们很多时候都需要指定字体的大小,以下是一个简单的说明
注意:使用的测试版本为 5.5.3
修改字体的方法
- 参考代码
public static void fillData(AcroFields fields, Map<String, String> data) {
try {
for (String key : data.keySet()) {
String value = data.get(key);
fields.setFieldProperty(key,"textsize",14f,null);
fields.setField(key, value);
}
} catch (Exception e) {
e.printStackTrace();
}
}
一个问题
因为setFieldProperty包含了连个重载的方法,参考签名信息如下:
public boolean setFieldProperty(String field, String name, Object value, int inst[])
public boolean setFieldProperty(String field, String name, int value, int inst[])
对于修改字体大小的我们需要使用一个float的类型,但是很多是否大家可能传递一个整数,那么肯定是没有效果的,合理的是进行类型
转换或者试<number>f
指定类型为float,这样参数设置才可以生效,仔细查看源码也能找到原因(api 设计感觉不是很好)
参考资料
以上是关于为啥itextpdf 在生成pdf 的时候 取表格高度为0的主要内容,如果未能解决你的问题,请参考以下文章