欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

java 使用itext导出PDF文件,中文不显示问题解决

程序员文章站 2022-05-25 21:29:26
...

之前写的java 使用itext 导出pdf 发现有个问题,在今天使用的时候,发现一个问题,就是当单元格中写中文的时候,导出来的pdf中文不显示。
java 使用itext导出PDF文件,图片文字左右布局
解决办法:设置字体格式,兼容中文字符。
如下:

 	//新增改进代码 -------------------------------
	BaseFont bfChinese = BaseFont.createFont("C:\\Windows\\Fonts\\simsun.ttc,1",  BaseFont.IDENTITY_H, 	BaseFont.NOT_EMBEDDED);//1 不能省略
	 Font fontChinese = new Font(bfChinese, 10, Font.NORMAL);
	 // ------------------------
	 //3、创建左边数据表格PdfPTable iTable,划分为N列

	 PdfPTable leftTable = new PdfPTable(4);//创建左边表格
	 //4、往左边表格中写入数据,加入iTable中
	 //4-1表格中可以合并单元格
	 PdfPCell leftCell = new PdfPCell(new Paragraph("Hello"));
	 leftCell.setHorizontalAlignment(Element.ALIGN_CENTER);
	 leftCell.setVerticalAlignment(Element.ALIGN_MIDDLE);
	 leftCell.setFixedHeight(lineHeight1);
	 leftCell.setColspan(4);
	 leftTable.addCell(leftCell);
	 //4-2填充数据
		for(int i=0;i<24;i++){
			//此处为改进代码,在进行写入中文测试的时候,增加对中文的兼容。
			 leftCell = new PdfPCell(new Paragraph("测试",fontChinese));
			 leftCell.setHorizontalAlignment(Element.ALIGN_CENTER);
			 leftCell.setVerticalAlignment(Element.ALIGN_MIDDLE);
			 leftCell.setFixedHeight(lineHeight2);
			 leftTable.addCell(leftCell);
		}

遇到问题:com.lowagie.text.DocumentException: Font ‘C:\Windows\Fontssimsun.ttc’ with ‘Identity-H’ is not recognized.
at com.lowagie.text.pdf.BaseFont.createFont(Unknown Source)
at com.lowagie.text.pdf.BaseFont.createFont(Unknown Source)
at com.lowagie.text.pdf.BaseFont.createFont(Unknown Source)
at MergeCell.main(MergeCell.java:4

解决方案:
BaseFont bfChinese = BaseFont.createFont(“C:\Windows\Fonts\simsun.ttc,1”, BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);//1 不能省略,省略会报以上错误。
Font fontChinese = new Font(bfChinese, 10, Font.NORMAL);

暂不知道为何在使用本地字体后方需要加个数字。
在实际使用项目过程中,将该字体放入项目根路径,修改上方的路径即可。

参考文章:https://www.cnblogs.com/LUA123/p/5108007.html