Java使用iText產生word檔案的解決方案

來源:互聯網
上載者:User

 

轉自【http://www.31km.cn/post/450.html】

JAVA產生WORD檔案的方法目前有以下種:

一種是jacob 但是局限於windows平台 往往許多JAVA程式運行於其他動作系統 在此不討論該方案

一種是pio但是他的excel處理很程式 word模組還局限於讀取word的常值內容,寫word檔案就更弱項了

本文介紹的是itext產生rtf檔案並儲存格式為word 此方案本人已實踐過 並已在項目中使用

用到的jar包: 
iText-2.1.5.jar
iText-rtf-2.1.4.jar
iTextAsian.jar

package com.rye.test;  import java.awt.Color;  import java.io.FileNotFoundException;  import java.io.FileOutputStream;  import java.io.IOException;   import com.lowagie.text.Cell;  import com.lowagie.text.Document;  import com.lowagie.text.DocumentException;  import com.lowagie.text.Font;  import com.lowagie.text.PageSize;  import com.lowagie.text.Paragraph;  import com.lowagie.text.Table;  import com.lowagie.text.rtf.RtfWriter2;  /**    * 建立word文檔 步驟:     * 1,建立文檔     * 2,建立一個書寫器     * 3,開啟文檔     * 4,向文檔中寫入資料     * 5,關閉文檔    */  public class WordDemo {      public WordDemo() {    }      /**     * @param args     */   public static void main(String[] args) {   // 建立word文檔,並設定紙張的大小   Document document = new Document(PageSize.A4);    try {      RtfWriter2.getInstance(document, new FileOutputStream("E:/word.doc"));       document.open();          //設定合約頭          Paragraph ph = new Paragraph();     Font f  = new Font();          Paragraph p = new Paragraph("出口合約",  new Font(Font.NORMAL, 18, Font.BOLDITALIC, new Color(0, 0, 0)) );      p.setAlignment(1);      document.add(p);      ph.setFont(f);        // 設定中文字型      // BaseFont bfFont =      // BaseFont.createFont("STSongStd-Light", "UniGB-UCS2-H",BaseFont.NOT_EMBEDDED);      // Font chinaFont = new Font();      /*       * 建立有三列的表格       */     Table table = new Table(4);      document.add(new Paragraph("產生表格"));      table.setBorderWidth(1);      table.setBorderColor(Color.BLACK);      table.setPadding(0);      table.setSpacing(0);            /*       * 添加表頭的元素       */     Cell cell = new Cell("表頭");//儲存格      cell.setHeader(true);      cell.setColspan(3);//設定表格為三列      cell.setRowspan(3);//設定表格為三行      table.addCell(cell);      table.endHeaders();// 表頭結束       // 表格的主體      cell = new Cell("Example cell 2");      cell.setRowspan(2);//目前的儲存格佔兩行,縱向跨度      table.addCell(cell);      table.addCell("1,1");      table.addCell("1,2");      table.addCell("1,3");      table.addCell("1,4");      table.addCell("1,5");      table.addCell(new Paragraph("用java產生的表格1"));      table.addCell(new Paragraph("用java產生的表格2"));      table.addCell(new Paragraph("用java產生的表格3"));      table.addCell(new Paragraph("用java產生的表格4"));      document.add(new Paragraph("用java產生word檔案"));      document.add(table);      document.close();     } catch (FileNotFoundException e) {      e.printStackTrace();     } catch (DocumentException e) {      e.printStackTrace();     } catch (IOException e) {      e.printStackTrace();     }    }     } 
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.