使用java读取文本文件(.txt)的元数据/属性

发布于 2024-10-17 08:53:30 字数 244 浏览 4 评论 0原文

我创建了一个 java 类,用于获取/设置文档的元数据(如作者、主题等)。
我使用 pdfBox 库来处理 pdf 文件,使用 apache poi 库来处理 MS Office 文档,它们完美地完成了这项工作。

我的问题是我也想访问 .txt 文件属性,但不知道如何操作。我已经使用了很多我读过的东西,但似乎没有一个起作用。对于 txt 文件,我只需要能够获取创建日期和修改日期(如果可能,我还希望能够设置修改日期)

有什么想法吗?

I have created a a java class that is used to get/set document's metadata (like author, subject etc).
I use pdfBox Library for pdf files and apache poi library for ms office documents and they 're doing the job perfectly.

My problem is that i also want to access .txt file properties, but can't find out how to do it. I've used lots of things i've read, but none seems to be working. For txt files i just need to be able to get Creation Date and Modification Date (if possible, i would also like to be able to set Modification Date)

Any ideas?

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

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

发布评论

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

评论(1

寄居人 2024-10-24 08:53:30

除了所有文件的元数据之外,文本文件没有任何元数据,可以通过 java.io.File 访问元数据。但是,这只允许您访问(读取和写入)修改日期,可能是因为并非所有文件系统都有单独的创建日期。

Text files have no metadata other than that present for all files, which is accessible via java.io.File. However, that only gives you access (read and write) to the modification date, probably because not all filesystems have a separate creation date.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文