您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關(guān)怎么在java中利用itext調(diào)整表格寬度,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
場景:
左側(cè)第一列寬度不夠,導(dǎo)致數(shù)據(jù)換行。
Table table = new Table(new float[2]);
new 一個Table之后,setWidthPercent()這個參數(shù)是這是所有列寬,并不能試用個別列。
需要在寫入數(shù)據(jù)的時候?qū)Ω鱾€列進(jìn)行自定義列寬:
Cell cell=new Cell().setWidth(70).setBorder(Border.NO_BORDER).setHorizontalAlignment(HorizontalAlignment.RIGHT).add(new Paragraph(entry.getKey()).setFont(sysFont).setFontSize(10)); Cell cell1=new Cell().setBorder(Border.NO_BORDER).setHorizontalAlignment(HorizontalAlignment.LEFT).add(new Paragraph(entry.getValue()).setFont(sysFont).setFontSize(10));
cell為第一列,cell1為第二列,在cell中設(shè)置寬度,不要再table上設(shè)置寬度。
即可解決個別列寬問題。
補(bǔ)充:java通過itext生成PDF,設(shè)置單元格cell的最大高度 以及 itext7初嘗
網(wǎng)上百度java生成pdf都是很老的代碼,使用的是itext5,找遍了大江南北都找不到設(shè)置表格或單元格最大高度,或者絕對定位表格的實(shí)現(xiàn),最后對table和cell的方法一個一個找,找到了滿足要求的方法:
cell.setMaxLines(int numberOfLines)
由于字體確定,每行字體的高度已確定,設(shè)定最大行數(shù)也就設(shè)定了最大高度,且避免了設(shè)置的高度不是每行高度的整數(shù)倍的麻煩,itext的這個操作也挺6,只是不符合一般認(rèn)知,無法輕易找到這個方法。
雖然cell最大高度解決了,但是表格的絕對定位依然沒有解決,itext5只能通過百分比的方式設(shè)置表格寬度,然后居中或靠左靠右顯示,非常不靈活。
經(jīng)查詢,itext7是目前最新版,試用了一下,非常靈活,該解決的問題都解決了。用法與5有稍許區(qū)別。
import com.itextpdf.io.font.PdfEncodings; import com.itextpdf.kernel.color.Color; import com.itextpdf.kernel.font.PdfFont; import com.itextpdf.kernel.font.PdfFontFactory; import com.itextpdf.kernel.geom.PageSize; import com.itextpdf.kernel.pdf.PdfDocument; import com.itextpdf.kernel.pdf.PdfWriter; import com.itextpdf.kernel.pdf.action.PdfAction; import com.itextpdf.layout.Document; import com.itextpdf.layout.border.DashedBorder; import com.itextpdf.layout.element.Cell; import com.itextpdf.layout.element.Link; import com.itextpdf.layout.element.Paragraph; import com.itextpdf.layout.element.Table; /** * @author belle.wang * @version V1.0.0 * @Description * @date 2017/7/19 0019 上午 11:37 */ public class Main { public static void main(String[] args) { try { PdfDocument pdfDoc = new PdfDocument(new PdfWriter("d:\\Helloworld.pdf")); Document document = new Document(pdfDoc, PageSize.A4); // 支持系統(tǒng)字體(支持中文) PdfFontFactory.registerSystemDirectories(); PdfFont chinese = PdfFontFactory.createRegisteredFont("microsoft yahei", PdfEncodings.IDENTITY_H); // 文字 Paragraph phrase = new Paragraph(); phrase.setFont(chinese); phrase.add("雷猴啊"); Link chunk = new Link("European Business Award!", PdfAction.createURI("http://www.baidu.com")); phrase.add(chunk); // 圖片 // Image img = new Image(ImageDataFactory.create("src/main/resources/img/magic.png")); // img.setFixedPosition(80, 560);//有傳頁數(shù)參數(shù)的方法 // 表格 Table table = new Table(new float[]{200f, 100f}); table.setWidth(300); table.setBorder(new DashedBorder(Color.BLUE, 2)); table.setFixedPosition(300f,300f,300f); table.addCell(phrase); // The complete cell is a link: Cell cell = new Cell().add("Help us win a European Business Award!"); table.addCell(cell); document.add(table); document.close(); } catch (Exception e) { e.printStackTrace(); } } }
看完上述內(nèi)容,你們對怎么在java中利用itext調(diào)整表格寬度有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。