For example given a java.util.Date how could I test if the time was before 12.30 PM that day?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Have a look at Calendar.before() Method.
|
|||||||||||||||
|
|
This works. It does the check using only the hour and minute portions of your date:
|
|||
|
|
|
You can create a Date with the current date and 12:30PM as the time and do a compareTo with the other date. |
|||
|
|
|
Create a Date startDate and endDate with the desired dates and then you can do something similar as this:
|
|||
|
|
|
You must use the function |
||||
|
|
|
I think @Bohemian has the best answer if you don't want to add dependencies, but IMO you should save yourself some time and give up on the java classes and add joda-time to your project :)
|
|||
|
|
