位置:首頁(yè) > 軟件操作教程 > 編程開發(fā) > Java > 問題詳情

Java操作應(yīng)用—— 導(dǎo)出PDF文件

提問人:ylm發(fā)布時(shí)間:2020-09-29

將表格導(dǎo)出成pdf也是一個(gè)比較常見的需求。通過itextpdf,導(dǎo)出pdf也不是什么難事。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

import  java.io.FileOutputStream;

import  com.itextpdf.text.Document;

import  com.itextpdf.text.Paragraph;

import  com.itextpdf.text.pdf.PdfPCell;

import  com.itextpdf.text.pdf.PdfPTable;

import  com.itextpdf.text.pdf.PdfWriter;

public  class  DrawPdf {

       public  static  void  main(String[] args)  throws  Exception {

         Document document =  new  Document();

         PdfWriter.getInstance(document,  new  FileOutputStream( "Employee.pdf" ));

         document.open();

         Paragraph para =  new  Paragraph( "Employee Table" );

         para.setSpacingAfter( 20 );

         document.add(para);

         PdfPTable table =  new  PdfPTable( 3 );

         PdfPCell cell =  new  PdfPCell( new  Paragraph( "First Name" ));

         table.addCell(cell);

         table.addCell( "Last Name" );

         table.addCell( "Gender" );

         table.addCell( "Ram" );

         table.addCell( "Kumar" );

         table.addCell( "Male" );

         table.addCell( "Lakshmi" );

         table.addCell( "Devi" );

         table.addCell( "Female" );

         document.add(table);

         document.close();

       }

     }

繼續(xù)查找其他問題的答案?

相關(guān)視頻回答
回復(fù)(0)
返回頂部