'STSong-Light' with 'UniGB-UCS2-H' is not recognized问题

原因:itextpdf和itext-asian包版本不匹配

可以使用如下版本

gradle:
compile("com.itextpdf:itextpdf:5.5.9")
compile("com.itextpdf:itext-asian:5.2.0")

maven:

  <dependency>
        <groupId> com.itextpdf</groupId >
        <artifactId>itextpdf</artifactId >
        <version> 5.5.9</ version>
 </dependency>

<dependency>
     <groupId> com.itextpdf</groupId >
     <artifactId>itext-asian</artifactId>
     <version> 5.2.0</ version>
</dependency>

猜你喜欢

转载自blog.csdn.net/w605283073/article/details/81702411