I would like to extract the date a jpg file was created. Java has the lastModified method for the File object, but appears to provide no support for extracting the created date from the file. I believe the information is stored within the file as the date I see when I hover the mouse pointer over the file in Win XP is different than what I can get by using JNI with "dir /TC" on the file in DOS.
|
feedback
|
|
The information is stored within the image in a format called EXIF or link text. There several libraries out there capable of reading this format, like this one | |||
feedback
|
|
The date is stored in the EXIF data in the jpeg. There's a java library and a viewer in java that might be helpful. | |||
|
feedback
|
|
I use this metadata library: http://www.drewnoakes.com/code/exif/ Seems to work pretty well, although bear in mind that not all JPEG images have this information, so it can't be 100% fool-proof. If the EXIF metadata doesn't contain the created date, then you'll probably have to make do with Java's lastUpdated - unless you want to resort to Runtime.exec(...) and using system functions to find out (I wouldn't recommend this, though!) | |||
|
feedback
|
|
The code example below asks the user for a file path and then outputs the creation date and time:
| |||
feedback
|
|
You probably need something to access the exif data. Google suggests this library. | ||||
|
feedback
|