Java 中的文件年龄

发布于 2024-11-15 03:16:27 字数 165 浏览 2 评论 0原文

我需要根据文件名查找文件的年龄。所有文件都遵循这样的命名约定:DD-MM-YYYY。

我可以制作一个程序,使用模数运算符根据已经过去的天数/月数等来得出文件名,但我似乎无法理解如何从名称计算年龄。欢迎任何提示。

任何代码示例/建议最好采用 Java 语言。

问候 马丁

I need to find the age of a file based on its name. Alle the files keep to a naming convention like this: DD-MM-YYYY.

I can make a program to come up with the filenames based on how many days/months has passed etc, using the modulus operator, but i can't seem to wrap my head around how to calculate the age from the name. Any tip is welcome.

Any codesamples/ -suggestions should preferable be in Java.

Regards
Martin

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

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

发布评论

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

评论(2

凉城凉梦凉人心 2024-11-22 03:16:27

您可以使用 DateFormat 来解析日期以及格式化日期。

未经测试:

String name = file.getName();
String datePortion = /*extract date portion*/;

DateFormat fmt = new SimpleDateFormat("dd-MM-yyyy");
Date fileDate = fmt.parse(datePortion);
long msBetweenDates = new Date().getTime() - fileDate.getTime();

如何提取日期部分取决于您的文件命名方案,但它可能很简单:

String datePortion = name.replaceAll(".*((\\d)+-(\\d)+-(\\d)+).*", "$1");

You can use a DateFormat to parse a date as well as format one.

Untested:

String name = file.getName();
String datePortion = /*extract date portion*/;

DateFormat fmt = new SimpleDateFormat("dd-MM-yyyy");
Date fileDate = fmt.parse(datePortion);
long msBetweenDates = new Date().getTime() - fileDate.getTime();

How you extract the date portion depends on your file naming scheme, but it's probably as easy as:

String datePortion = name.replaceAll(".*((\\d)+-(\\d)+-(\\d)+).*", "$1");
南薇 2024-11-22 03:16:27

如果上次修改日期足够,您可以使用:

    File file = new File("C:/file.txt");
    Date date = new Date(file.lastModified());
    System.out.println(date);

if the last modified date is enough, you can use:

    File file = new File("C:/file.txt");
    Date date = new Date(file.lastModified());
    System.out.println(date);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文