You can save the date field this way.
Document doc = new Document();
doc.add(new Field("modified",
DateTools.timeToString(f.lastModified(), DateTools.Resolution.MINUTE),
Field.Store.YES, Field.Index.NOT_ANALYZED));
where f is the file object ...
Now use the above document for the indexer ...
checkout example code comes with lucene ... and the following link ...
http://lucene.apache.org/java/2_2_0/api/org/apache/lucene/document/DateTools.html
UPDATE
Field.Index NOT_ANALYZED
, . , . , .
lucene javadoc Field.Index NOT_ANALYZED, , IndexWriter , , .