程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> java 生成word,html ,excel,pdf 代碼

java 生成word,html ,excel,pdf 代碼

編輯:關於JAVA
 

1,所需包 iText.jar iTextAsian.jar(這個包是用來支持中文)

2.列子

package com.pdf;

import java.awt.Color;
import java.io.FileOutputStream;

import com.lowagie.text.Cell;
import com.lowagie.text.Document;
import com.lowagie.text.PageSize;
import com.lowagie.text.Table;
import com.lowagie.text.html.HtmlWriter;
import com.lowagie.text.pdf.PdfWriter;
import com.lowagie.text.rtf.RtfWriter;
import com.lowagie.text.rtf.RtfWriter2;

 

public class WriterPDF2 {

public static void main(String[] args){
//實例化對象
Document document = new Document(PageSize.A4);
//建立讀寫器

try {
//實列化不同的類,可以生成不同的文件
PdfWriter.getInstance(document, new FileOutputStream("c:\\one.pdf"));//生成PDF
//HtmlWriter.getInstance(document, new FileOutputStream("c:\\11.doc"));//本來是寫Html的 但也可以用來寫word 或 excel
//RtfWriter2.getInstance(document, new FileOutputStream("c:\\22.doc"));//生成doc
//打開文檔
document.open();
//向文檔中添加內容
Table table = new Table(3);
//table.setBorder(1);
table.setBorderWidth(1);
table.setBorderColor(new Color(0,0,255));
table.setPadding(5);
table.setSpacing(5);

Cell cell = new Cell("header");
cell.setHeader(true);
cell.setColspan(3);

table.addCell(cell);
table.endHeaders();

cell = new Cell("aaaaaaaaaaaaaaaaa");
cell.setRowspan(2);
cell.setBorderColor(new Color(255,0,0));

table.addCell(cell);

table.addCell("1.1");
table.addCell("2.1");
table.addCell("1.2");
table.addCell("2.2");

table.addCell("cell test1");

cell = new Cell("big cell");
cell.setRowspan(2);
cell.setColspan(2);
table.addCell(cell);

table.addCell("cell test2");


document.add(table);


document.close();
//關閉文檔
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}


}
}
 

 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved