I have a timestamp, how can I compare it with a fix time

I have a timestamp variable, how can I compare it with a fix time, such as 3:00PM to find whether it is before or after the fixing timeMessage was edited by: henry_22
[187 byte] By [henry_22a] at [2007-11-27 6:34:06]
# 1
For instance: Create a Calendar instance, initialize it to the Timestamp's milliseconds, call get(Calendar.HOUR_OF_DAY) and compare the resulting value to 3.
quittea at 2007-7-12 18:00:18 > top of Java-index,Java Essentials,Java Programming...
# 2
Hi quitte,Calendar is not a concrete class, its an abstract class. How can we create Calendar instance?
kantza at 2007-7-12 18:00:18 > top of Java-index,Java Essentials,Java Programming...
# 3
Calendar.getInstance()
quittea at 2007-7-12 18:00:18 > top of Java-index,Java Essentials,Java Programming...
# 4
.
jverda at 2007-7-12 18:00:18 > top of Java-index,Java Essentials,Java Programming...