I have a hashmap: Map dateEvent = new HashMap(); where key is a date and time and value is a string. I fill collection with data where date is in format dd.MM.yyyy HH:mm. How I can get all keys with date based on this format: dd.MM.yyyy?
|
This code will do the trick:
The important thing here is that all dates are converted to a String with format "dd.MM.yyyy" before comparing, so any differences in hour/minute/second still match if the day is the same. This code also demonstrates the best way (IMHO) to iterate over a map. |
|||||
|
|
Not sure whether I get you right. However, you get the set of keys from a map using E.g.:
|
|||
|
|
|
You have (at least) two options: You could write your own Date class which supplies appropriate implementations of The brute force alternative is to scan all keys whether they fit your criteria. |
|||
|
|
|
There is no difference between between the Date
|
|||
|
|

Dateobject or aStringobject in the formdd.MM.yyyy HH:mm? – Qwerky Aug 19 '11 at 10:13