1

我正在使用路径读取 pdf 文件,并想向其中添加元数据。

我知道添加元数据的方法:

Documnt.addAuthor and ext...

但是我如何将现有的 pdf 放入 Document 对象中?

我正在阅读这样的文件:

PdfReader reader = new PdfReader(pdfFilePath);
FileOutputStream out = new FileOutputStream(outFile);
PdfStamper stamp = new PdfStamper(reader, out);
4

1 回答 1

2

您可以使用PdfStamper.setMoreInfo

final HashMap<String, String> info = new HashMap<>();
if (title != null) {
    info.put("Title", title);
}
if (subject != null) {
    info.put("Subject", subject);
}
if (keywords != null) {
    info.put("Keywords", keywords);
}
if (creator != null) {
    info.put("Creator", creator);
}
if (author != null) {
    info.put("Author", author);
}

stamper.setMoreInfo(info);
于 2013-10-30T09:38:10.803 回答