IText - Generating PDF with Chinese characters (Chinese Simplified)

寵の児 提交于 2019-12-02 08:07:41

You have the iText jar in your CLASSPATH, but you forgot to add the (correct) itext-asian.jar.

Please download version 2.3 of the extra jars ZIP-file that is available here: http://sourceforge.net/projects/itext/files/extrajars/

This jar contains metrics for Chinese glyphs. Such a font will never be embedded. When you open a document using such a font in Adobe Reader, you may be asked to install an extra font pack.

The solution adopted:

private static final String PATH_FONT_ARIALUNI = "C:\\Windows\\Fonts\\arialuni.ttf";
      private static final String PATH_FONT_COUR = "C:\\Windows\\Fonts\\cour.ttf";



       // FOR Chinese
       BaseFont baseFont = BaseFont.createFont(PATH_FONT_ARIALUNI, BaseFont.IDENTITY_H, BaseFont.EMBEDDED);
       Font font = new Font(baseFont, 6.8f);

       BaseFont baseFontNormal = BaseFont.createFont(PATH_FONT_COUR, BaseFont.IDENTITY_H, BaseFont.EMBEDDED);
       Font fontNormal = new Font(baseFontNormal, 6.8f);

       Paragraph par = new Paragraph();
       par.setLeading(9);

       char[] aa = line.toCharArray();
       boolean isLastChineseChar = false;

       System.out.println(line);

       StringBuilder newLine = new StringBuilder();
       for (int j = 0; j < line.length(); j++) {

           if((Character.UnicodeBlock.of(aa[j]) == Character.UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS)){
               if(!isLastChineseChar) {
                   par.add(new Phrase(newLine.toString(), fontNormal));
                   newLine.delete(0, newLine.length());
               }
               newLine.append(aa[j]);
               isLastChineseChar = true;
               /*System.out.println("Is CHINESE: " + aa[j]);*/
           } else {
               if(isLastChineseChar) {
                   par.add(new Phrase(newLine.toString(), font));
                   newLine.delete(0, newLine.length());
                   isLastChineseChar = false;
               }
               newLine.append(aa[j]);
               /*System.out.println("NOT IS CHINESE: " + aa[j]);*/
           }
       }

       if(isLastChineseChar){
           par.add(new Phrase(newLine.toString(), font));
       } else {
           par.add(new Phrase(newLine.toString(), fontNormal));
       }       

       if(line.contains(BREAK_PAGE)) {
          document.newPage();
       }

       par.setAlignment(Element.ALIGN_LEFT);
       document.add(par);
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!