首页 > 学院 > 开发设计 > 正文

use itext to create a html

2019-11-17 06:17:47
字体:
来源:转载
供稿:网友

import java.awt.Color;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.net.MalformedURLException;

import com.lowagie.text.*;
import com.lowagie.text.Html.HtmlWriter;
/*
 * Created on 2004-11-10
 *
 */

/**
 * @author Liao Chuan(liao_chuan@shhicom.com.cn)
 *
 */
public class HTMLCreate {

 public static void main(String[] args) throws MalformedURLException, IOException {
  HTMLCreate htmlCreate = new HTMLCreate();
  try {
   htmlCreate.createHTML();
  } catch (FileNotFoundException e) {
   // TODO Auto-generated catch block
   e.PRintStackTrace();
  } catch (DocumentException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
 }
 public void createHTML() throws DocumentException, BadElementException, MalformedURLException, IOException
 {
  Document document = new Document(PageSize.A4);
  //document.addTitle("Title");
  //document.addHeader("header","Header");
  
  HtmlWriter.getInstance(document, new FileOutputStream("C:/World.html"));
  
  document.open();
  //add a Word
  document.add(new Paragraph("Hello World!您好!hehe!"));
  //add a table
  Table table = new Table(3);
  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("example cell with colspan 1 and rowspan 2");
  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);
  
  Image png = Image.getInstance("workswithMySQL.png");


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表