10

我想提取创建 jpg 文件的日期。Java 具有 File 对象的 lastModified 方法,但似乎不支持从文件中提取创建日期。我相信信息存储在文件中,因为我在 Win XP 中将鼠标指针悬停在文件上时看到的日期与在 DOS 中使用带有“dir / TC”的 JNI 获得的日期不同。

4

5 回答 5

12

信息以称为EXIF链接文本的格式存储在图像中。有几个库可以读取这种格式,比如这个

于 2008-09-17T14:32:26.467 回答
6

日期存储在jpeg中的EXIF数据中。Java中有一个Java库和一个查看器可能会有所帮助。

于 2008-09-17T14:27:34.950 回答
4

我使用这个元数据库:http ://www.drewnoakes.com/code/exif/

似乎工作得很好,但请记住,并非所有 JPEG 图像都有此信息,因此它不能 100% 万无一失。

如果 EXIF 元数据不包含创建日期,那么您可能不得不使用 Java 的 lastUpdated - 除非您想求助于 Runtime.exec(...) 并使用系统函数来查找(我不会不过不推荐这个!)

于 2008-09-17T14:30:41.637 回答
0

您可能需要一些东西来访问exif数据。谷歌建议这个库

于 2008-09-17T14:28:23.310 回答
0

下面的代码示例询问用户文件路径,然后输出创建日期和时间:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {

    public static void main(final String[] args) {
        try {
            // get runtime environment and execute child process
            Runtime systemShell = Runtime.getRuntime();
            BufferedReader br1=new BufferedReader(new InputStreamReader(System.in));
            System.out.println("Enter filename: ");
            String fname=(String)br1.readLine();
            Process output = systemShell.exec("cmd /c dir /a "+fname);
             // open reader to get output from process
            BufferedReader br = new BufferedReader (new InputStreamReader(output.getInputStream()));

            String out="";
            String line = null;

            int step=1;
             while((line = br.readLine()) != null ) 
              {
                 if(step==6)
                {
                out=line;
                }
                 step++;
                 }          // display process output

            try{
            out=out.replaceAll(" ","");
            System.out.println("CreationDate: "+out.substring(0,10));
            System.out.println("CreationTime: "+out.substring(10,15));
            }
            catch(StringIndexOutOfBoundsException se)
            {
                System.out.println("File not found");
            }
            }
          catch (IOException ioe){ System.err.println(ioe); }
          catch (Throwable t) { t.printStackTrace();}
    }
}
于 2008-09-17T14:38:01.057 回答