当前位置: 技术问答>java相关
·········itext 问题!!!
来源: 互联网 发布时间:2017-03-15
本文导语: 今天用到itext,试了一下发现不能显示中文,搜了很多帖子都没找到解决方法, 请知道的朋友告诉我一下, 谢谢了 | 严重关注。 lirc ()的方法: Table aTable = new Table(2, 2); float[]...
今天用到itext,试了一下发现不能显示中文,搜了很多帖子都没找到解决方法,
请知道的朋友告诉我一下,
谢谢了
请知道的朋友告诉我一下,
谢谢了
|
严重关注。
lirc ()的方法:
Table aTable = new Table(2, 2);
float[] intheaderwidths = { 18, 18};
aTable.setWidths(intheaderwidths);
aTable.setWidth(36);
BaseFont bfChinese = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H", false);
Font FontChinese = new Font(bfChinese, 12, Font.NORMAL);
Phrase ph = new Phrase("中文显示", FontChinese);
Cell cell = new Cell(ph);
aTable.addCell(cell);
我试了一下,没有成功,kalu77(王小石) 说是中文包的问题。可以一起研究。
lirc ()的方法:
Table aTable = new Table(2, 2);
float[] intheaderwidths = { 18, 18};
aTable.setWidths(intheaderwidths);
aTable.setWidth(36);
BaseFont bfChinese = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H", false);
Font FontChinese = new Font(bfChinese, 12, Font.NORMAL);
Phrase ph = new Phrase("中文显示", FontChinese);
Cell cell = new Cell(ph);
aTable.addCell(cell);
我试了一下,没有成功,kalu77(王小石) 说是中文包的问题。可以一起研究。