我使用itext7 7.0.0
我跟踪了Writer properties of Chapter 7
中的示例我的发现是:
(1)如果我写了
PdfDocumentInfo info = pdfDocument.getDocumentInfo();
...
info.setKeywords("ab");
我得到了正确的关键字属性。
(2)但是,如果我写道:
info.setKeywords("a\nb"); // I want to make a line break
(3)如果我写道:
info.setKeywords("a;\nb");
我不确定这是一个错误或功能,也许我们不应该" \ n"在这种情况下,打破线。