我正试图找一个PDF文档的作者。
我已经尝试过诸如getOwner()之类的事情,但这会返回文件所在计算机的帐户,而不是实际的作者。
PosixFileAttributes otherLeafInfo = Files.readAttributes(nodeMetaData, PosixFileAttributes.class);
fileAuthor.setText("Author: "+ otherLeafInfo.owner().getName());
这显示了我的帐户名称,而不是实际的文件作者。
任何人都可以帮助提取实际的作者信息吗?
它存在,至少在Mac环境中如此,因为获取信息会显示正确的作者。