itest生成pdf中文为空白

itest生成pdf中文为空白

要下载iTextAsian.jar

地址: http://prdownloads.sourceforge.net/itext/iTextAsian.jar?download

import com.lowagie.text.Font;
import com.lowagie.text.pdf.BaseFont;


BaseFont bfChinese = BaseFont.createFont("STSong-Light",  "UniGB-UCS2-H", BaseFont.NOT_EMBEDDED);
Font FontChinese = new Font(bfChinese, 12, Font.NORMAL);

加入document:

Paragraph chunk = new Paragraph("中文", FontChinese);
document.add(chunk);



你可能感兴趣的:(itest生成pdf中文为空白)