java - 使用Apache PDFBox生成unicode pdf

时间:2015-01-25 06:11:28

标签: java pdf encoding utf-8 pdfbox

我必须在我的spring mvc应用程序中生成pdf。最近我测试iTextPdf library,但我无法生成unicode pdf文档。事实上,我没有在生成的文档中看到非拉丁字符。我决定使用Apache PDFBox作为我的目的,但我不知道它是否支持unicode字符?如果有,是否有任何学习pdfBox的好教程?如果没有,我应该使用哪个库? 提前谢谢。

2 个答案:

答案 0 :(得分:4)

1.8。*版本不支持使用Unicode生成PDF,但2.0。*版本支持。这是EmbeddedFonts.java的示例:

public class EmbeddedFonts
{
    public static void main(String[] args) throws IOException
    {
        PDDocument document = new PDDocument();
        PDPage page = new PDPage(PDRectangle.A4);
        document.addPage(page);

        String dir = "../pdfbox/src/main/resources/org/apache/pdfbox/resources/ttf/";
        PDType0Font font = PDType0Font.load(document, new File(dir + "LiberationSans-Regular.ttf"));

        PDPageContentStream stream = new PDPageContentStream(document, page);

        stream.beginText();
        stream.setFont(font, 12);
        stream.setLeading(12 * 1.2);

        stream.newLineAtOffset(50, 600);
        stream.showText("PDFBox Unicode with Embedded TrueType Font");
        stream.newLine();

        stream.showText("Supports full Unicode text ?");
        stream.newLine();

        stream.showText("English русский язык Tiếng Việt");

        stream.endText();
        stream.close();

        document.save("example.pdf");
        document.close();
    }
}

请注意,与iText不同,PDFBox对PDF创建的支持非常低,即我们不支持开箱即用的段落或表格。没有教程,但有很多例子。 API在PDF规范中定位。

答案 1 :(得分:2)

当前版本的Apache PDFBox无法处理Unicode,请参阅:     https://pdfbox.apache.org/ideas.html

iTextPdf v.5.x使用Unicode生成pdf文件。这里有一个例子:     iText in Action:第11章:选择正确的字体     part3.chapter11.UnicodeExample     http://itextpdf.com/examples/iia.php?id=199

要运行它,您只需要调整EncodingExample.FONT的值并添加一些代码来创建输出文件。