web-dev-qa-db-ja.com

Java Apache POI Excelとして保存PDF

Excelファイルをpdfに変換/保存するにはどうすればよいですか? Java play frameworkを使用していくつかのExcelファイルを生成していますが、現在は要件がpdfに変更されています。すべてを書き直したくありません。

pdfに変換する方法はありますか?

生成しているExcelファイルはテンプレートからのものです。 Excelテンプレートファイルを読み取り、変更を書き込み、新しいExcelファイルとして保存します。そのようにして、テンプレートは変更されません。境界線、画像、その他の書式設定が含まれています。

15

プログラムが機能するには、次のJavaライブラリと関連JARファイルが必要です。POI v3.8 iText v5.3.4

XLSをPDFに変換するには、この例を試してください

Excelスプレッドシートデータを入力として受け取り、それをJavaテーブルデータに変換する完全なPDFコードを以下に示します。

 import Java.io.FileInputStream;
    import Java.io.*;
    import org.Apache.poi.hssf.usermodel.HSSFWorkbook;
    import org.Apache.poi.hssf.usermodel.HSSFSheet;
    import org.Apache.poi.ss.usermodel.*;
    import Java.util.Iterator;
   import com.itextpdf.text.*;
    import com.itextpdf.text.pdf.*;

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

                    FileInputStream input_document = new FileInputStream(new File("C:\\Excel_to_pdf.xls"));
                    // Read workbook into HSSFWorkbook
                    HSSFWorkbook my_xls_workbook = new HSSFWorkbook(input_document); 
                    // Read worksheet into HSSFSheet
                    HSSFSheet my_worksheet = my_xls_workbook.getSheetAt(0); 
                    // To iterate over the rows
                    Iterator<Row> rowIterator = my_worksheet.iterator();
                    //We will create output PDF document objects at this point
                    Document iText_xls_2_pdf = new Document();
                    PdfWriter.getInstance(iText_xls_2_pdf, new FileOutputStream("Excel2PDF_Output.pdf"));
                    iText_xls_2_pdf.open();
                    //we have two columns in the Excel sheet, so we create a PDF table with two columns
                    //Note: There are ways to make this dynamic in nature, if you want to.
                    PdfPTable my_table = new PdfPTable(2);
                    //We will use the object below to dynamically add new data to the table
                    PdfPCell table_cell;
                    //Loop through rows.
                    while(rowIterator.hasNext()) {
                            Row row = rowIterator.next(); 
                            Iterator<Cell> cellIterator = row.cellIterator();
                                    while(cellIterator.hasNext()) {
                                            Cell cell = cellIterator.next(); //Fetch CELL
                                            switch(cell.getCellType()) { //Identify CELL type
                                                    //you need to add more code here based on
                                                    //your requirement / transformations
                                            case Cell.CELL_TYPE_STRING:
                                                    //Push the data from Excel to PDF Cell
                                                     table_cell=new PdfPCell(new Phrase(cell.getStringCellValue()));
                                                     //feel free to move the code below to suit to your needs
                                                     my_table.addCell(table_cell);
                                                    break;
                                            }
                                            //next line
                                    }

                    }
                    //Finally add the table to PDF document
                    iText_xls_2_pdf.add(my_table);                       
                    iText_xls_2_pdf.close();                
                    //we created our pdf file..
                    input_document.close(); //close xls
            }
    }

これがお役に立てば幸いです

19
santhosh