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

所需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();

}

}

,

免责声明:本文仅代表文章作者的个人观点,与本站无关。其原创性、真实性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容文字的真实性、完整性和原创性本站不作任何保证或承诺,请读者仅作参考,并自行核实相关内容。文章投诉邮箱:anhduc.ph@yahoo.com

    分享
    投诉
    首页