91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在java中利用itext調整表格寬度

發布時間:2021-01-30 14:06:53 來源:億速云 閱讀:624 作者:Leah 欄目:開發技術

今天就跟大家聊聊有關怎么在java中利用itext調整表格寬度,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

場景:

左側第一列寬度不夠,導致數據換行。

怎么在java中利用itext調整表格寬度

Table table = new Table(new float[2]);

new 一個Table之后,setWidthPercent()這個參數是這是所有列寬,并不能試用個別列。

需要在寫入數據的時候對各個列進行自定義列寬:

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中設置寬度,不要再table上設置寬度。

即可解決個別列寬問題。

調整后的效果:

怎么在java中利用itext調整表格寬度

補充:java通過itext生成PDF,設置單元格cell的最大高度 以及 itext7初嘗

網上百度java生成pdf都是很老的代碼,使用的是itext5,找遍了大江南北都找不到設置表格或單元格最大高度,或者絕對定位表格的實現,最后對table和cell的方法一個一個找,找到了滿足要求的方法:

cell.setMaxLines(int numberOfLines)

由于字體確定,每行字體的高度已確定,設定最大行數也就設定了最大高度,且避免了設置的高度不是每行高度的整數倍的麻煩,itext的這個操作也挺6,只是不符合一般認知,無法輕易找到這個方法。

雖然cell最大高度解決了,但是表格的絕對定位依然沒有解決,itext5只能通過百分比的方式設置表格寬度,然后居中或靠左靠右顯示,非常不靈活。

經查詢,itext7是目前最新版,試用了一下,非常靈活,該解決的問題都解決了。用法與5有稍許區別。

iText7示例

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);
   // 支持系統字體(支持中文)
   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);//有傳頁數參數的方法
 
   // 表格
   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();
  }
 } 
}

看完上述內容,你們對怎么在java中利用itext調整表格寬度有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

禄丰县| 台州市| 岑溪市| 阿瓦提县| 怀来县| 浦东新区| 桂平市| 嘉义市| 准格尔旗| 绵阳市| 漾濞| 海门市| 信丰县| 蕲春县| 平武县| 吴川市| 博罗县| 高唐县| 惠安县| 庆云县| 卓资县| 湾仔区| 南宁市| 农安县| 千阳县| 文昌市| 广灵县| 武定县| 红安县| 宁晋县| 伊宁县| 滕州市| 拉萨市| 婺源县| 芒康县| 塔河县| 洪江市| 延庆县| 平潭县| 衡阳县| 阳朔县|