所需jar包截图

html文件转pdf工具(利用Itext插件将HTML页面转换成PDF)(1)

package com.itext.util;

import java.io.file;

import java.io.FileInputStream;

import java.io.FileOutputStream;

import java.io.IOException;

import java.io.Reader;

import com.itextpdf.text.Document;

import com.itextpdf.text.DocumentException;

import com.itextpdf.text.pdf.PdfWriter;

import com.itextpdf.tool.xml.XMLWorker;

import com.itextpdf.tool.xml.XMLWorkerHelper;

public class Selfhtml {

public static final String DEST = "E:/html_table.pdf" ;

public static final String HTML = "E:/MyJavaWorkSpace/ItextTest/WebContent/table_css.html";

public static void main(String[] args) throws IOException, DocumentException {

File file = new File( DEST);

file.getParentFile().mkdirs();

new SelfHtml().createPdf(DEST );

}

/**

* Creates a PDF with the words "Hello World"

* @param file

* @throws IOException

* @throws DocumentException

*/

public void createPdf(String file) throws IOException, DocumentException {

// step 1

Document document = new Document();

// step 2

PdfWriter writer = PdfWriter. getInstance(document, new FileOutputStream(file));

// step 3

document.open();

// step 4

XMLWorkerHelper.getInstance().parseXHtml(writer, document,

new FileInputStream(HTML));

// step 5

document.close();

}

}

,