iText输出中文的三种字体选择方式

时间:2025-04-01 08:50:51

1、使用中的字体
    ("STSong-Light", "UniGB-UCS2-H",BaseFont.NOT_EMBEDDED);
2、使用Windows系统字体(TrueType)
        ("C:/WINDOWS/Fonts/", BaseFont.IDENTITY_H,BaseFont.NOT_EMBEDDED);    
3、使用资源字体(ClassPath)
    ("/", BaseFont.IDENTITY_H,BaseFont.NOT_EMBEDDED);   

示例代码:

第一种方式
    ByteArrayOutputStream baos = new ByteArrayOutputStream(OUTPUT_BYTE_ARRAY_INITIAL_SIZE);
    Document document = new Document(PageSize.A4);
    PdfWriter writer = (document, baos);
    (  | );
    BaseFont bf = ("STSong-Light", "UniGB-UCS2-H",BaseFont.NOT_EMBEDDED);
    Font font = new Font(bf, 12, );
    ();
    Paragraph p = new Paragraph("你好", font); 
    (p);
    (new Paragraph("Test2"));
    Table table = new Table(2, 3);
    (new Phrase("我好", font));
    ("C2R1");
    ("C1R2");
    ("C2R2");
    Cell c = (Cell) (0, 0);
    ("Middle");
    (new Color(255, 0, 0));
    ("Center");
    (table);
    ();
    (new FileOutputStream("F://"));      

这种方式可能遇到的问题是adober的版本不同造成中文不能显示,可以用超星等其他浏览器查看效果

第二种方式 

public static void main(String[] args) {
  // TODO Auto-generated method stub
        // step 1: creation of a document-object
        Document document = new Document();        
        try {
            // step 2:
            // we create a writer that listens to the document
            // and directs a PDF-stream to a file
            (document, new FileOutputStream("D://ChinesePDF005_"+new ().getTime()+".pdf"));
            
            // step 3: we open the document
            ();
            
            // step 4: we add content to the document
            //楷体字
            //BaseFont bfComic = ("c://windows//fonts//", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
            //方正舒体
            //BaseFont bfComic = ("c://windows//fonts//", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
            //方正姚体
            //BaseFont bfComic = ("c://windows//fonts//", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
            //仿宋体
            //BaseFont bfComic = ("c://windows//fonts//", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
            //黑体
            //BaseFont bfComic = ("c://windows//fonts//", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
            //华文彩云
            //BaseFont bfComic = ("c://windows//fonts//", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
            //华文仿宋
            //BaseFont bfComic = ("c://windows//fonts//", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
            //华文细黑
            //BaseFont bfComic = ("c://windows//fonts//", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
            //华文新魏
            //BaseFont bfComic = ("c://windows//fonts//", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
            //华文行楷
            //BaseFont bfComic = ("c://windows//fonts//", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
            //华文中宋
            //BaseFont bfComic = ("c://windows//fonts//", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
            //隶书
            //BaseFont bfComic = ("c://windows//fonts//", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
            //宋体&新宋体    (这种字体的输出不了.有问题)
            //BaseFont bfComic = ("c://windows//fonts//", BaseFont.NOT_EMBEDDED, BaseFont.NOT_EMBEDDED);
            //宋体-方正超大字符集
            //BaseFont bfComic = ("c://windows//fonts//", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
            //幼圆
            BaseFont bfComic = ("c://windows//fonts//", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);

            Font font = new Font(bfComic, 14);
            String text1 = " 幼圆幼圆幼圆  This is the quite popular True Type font (繁體字測試VS简体字测试) ==>"+new ();
            (new Paragraph(text1, font));
        }
        catch(DocumentException de) {
            (());
        }
        catch(IOException ioe) {
            (());
        }        
        // step 5: we close the document
        ();
        (">>> Export : "+"D://ChinesePDF005__.pdf");
 }

}