0

如果已经存在,如何跳过换行符?

就我而言,如果我在数据库中的文本是这种格式:

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

所以我必须在我的 pdftable 列中写下一行中的可用空间。

4

1 回答 1

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);

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

于 2013-09-18T09:34:17.093 回答