The Artima Developer Community
Sponsored Link

Java Answers Forum
how to extract the date n time from images

1 reply on 1 page. Most recent reply: Jun 19, 2008 5:19 AM by Rajeev Mutalik

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 1 reply on 1 page
norazanita adnan

Posts: 6
Nickname: norazanita
Registered: Jun, 2008

how to extract the date n time from images Posted: Jun 15, 2008 10:58 PM
Reply to this message Reply
Advertisement
can anybody help me...what function/ method that i can use to extract the date an time from images

thanks


Rajeev Mutalik

Posts: 57
Nickname: rajmutalik
Registered: Sep, 2002

Re: how to extract the date n time from images Posted: Jun 19, 2008 5:19 AM
Reply to this message Reply
If its a file, then in java u can use File class's lastModified() method.

E.g: File file = new File(filename_along_with_path);
long timeOfModification = file.lastModified
S.o.p(timeOfModification);


Rajeev

Flat View: This topic has 1 reply on 1 page
Topic: documenting a package Previous Topic   Next Topic Topic: Conversion from String to Date??

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use