使用 iText 和 pdf writer 覆盖 pdf 中的creationDate

发布于 2025-01-07 21:49:06 字数 130 浏览 2 评论 0原文

我需要修改使用 iText 创建的 pdf 的创建日期。

对我来说,删除日期中 00:00:00 的时间信息就足够了。

是否可以在使用 pdfWriter 创建 pdf 时执行此操作?

谢谢你!马可

I need to modify the creationDate of my pdf created using iText.

For me is enough to remove the time information putting 00:00:00 from the date.

Is it possible to do during pdf creation with pdfWriter?

Thank you! Marco

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你又不是我 2025-01-14 21:49:06

我明白了..很简单!您可以在生成时执行此操作:

PdfDictionary info = writer.getInfo();
Calendar cal = Calendar.getInstance();
cal.set(Calendar.HOUR, 0);
cal.set(Calendar.MINUTE, 0);
cal.set(Calendar.SECOND, 0);
info.put(PdfName.CREATIONDATE, new PdfDate(cal));
info.put(PdfName.MODDATE, new PdfDate(cal));

I got it.. It is simple! You can do it at generation time:

PdfDictionary info = writer.getInfo();
Calendar cal = Calendar.getInstance();
cal.set(Calendar.HOUR, 0);
cal.set(Calendar.MINUTE, 0);
cal.set(Calendar.SECOND, 0);
info.put(PdfName.CREATIONDATE, new PdfDate(cal));
info.put(PdfName.MODDATE, new PdfDate(cal));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文