如何跳过itext中的换行符?

时间:2013-09-18 09:26:42

标签: itext

如果新行字符已经存在,如何跳过它?

就我而言,如果数据库中的文本采用以下格式:

Relative to the ground, an airplane 
gains speed when it encounters wind 
from behind.

所以我必须在我的pdftable列中一行写入尽可能多的空间。

1 个答案:

答案 0 :(得分:0)

您必须将setNoWrap()设置为true才能实现此目的。 试试这样的事情

Phrase p1=new Phrase("Relative to the ground, an airplane gains speed when it encounters wind from behind.", FontFactory.getFont(FontFactory.TIMES_ROMAN,8));
PdfPCell cell1=new PdfPCell(p1);
cell1.setNoWrap(true);

另请注意,如果列大小较小,则文本将超出您的单元格。