java使用xmlWorkerHelper将html转pdf

1、引入maven包

        
                com.itextpdf
                itextpdf
                5.5.12
        

       
                com.itextpdf.tool
                xmlworker
                5.5.8
       

2、编码示例:

import java.io.ByteArrayInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.nio.charset.Charset;
import com.itextpdf.text.Document;
import com.itextpdf.text.PageSize;
import com.itextpdf.text.pdf.PdfWriter;
import com.itextpdf.tool.xml.XMLWorkerHelper;

public class XmlWorkerHelperUtil{

    public static void htmlToPDF(String htmlString,String pdfPath) {
        try {
            Document document = new Document(PageSize.A4);
            PdfWriter pdfWriter = PdfWriter.getInstance(document,new FileOutputStream(pdfPath));
            document.open();
            document.addAuthor("pdf作者");
            document.addCreator("pdf创建者");
            document.addSubject("pdf主题");
            document.addCreationDate();
            document.addTitle("pdf标题,可在html中指定title");
            XMLWorkerHelper worker = XMLWorkerHelper.getInstance();
            InputStream inputStream=null;
            worker.parseXHtml(pdfWriter, document, new ByteArrayInputStream(htmlString.getBytes("UTF-8")),inputStream,Charset.forName("UTF-8"),new AsianFontProvider());
            document.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}
import com.itextpdf.text.Font;
import com.itextpdf.tool.xml.XMLWorkerFontProvider;

public class AsianFontProvider extends XMLWorkerFontProvider {

    @Override
    public Font getFont(final String fontname, String encoding, float size, final int style) {
        String fntname = fontname;
        if (fntname == null) {
           /*使用的windows里的宋体,可将其文件放资源文件中引入
            *请确保simsun.ttc字体在windows下支持
            *我是将simsun.ttc字体打进maven的jar包中使用
            */
            fntname = "fonts/simsun.ttc";
        }
        if (size == 0) {
            size = 4;
        }
        return super.getFont(fntname, encoding, size, style);
    }
}

3、字体乱码问题:

 html字符串指定utf-8字体,指定body标签样式为SimSun,若内容有设定字体样式的也一并修改为SimSun。


XXX合同






4、针对SimSun的说明

fonts/simsun.ttc字体,为宋体。这是存放于maven的jar中的资源文件。

两种方式可以保证其在linux服务器上正常运行。

1、将simsun.ttc文件作为maven组件资源白名单文件打成jar包(我目前使用的这种)

2、将simsun.ttc文件用root用户上传至linux服务器上,大概是/usr/share/font目录下。

     fc-cache 刷新字体缓存

     fc-list 查看字体列表

 

你可能感兴趣的:(java开发,java,html转pdf)