Introduction
In this tip, we develop a class named TimeUtil
to work with Java’s built in Date
class to obtain current time in two formats: GMT and our desired format.
Background
Java has many useful classes to work with times and dates. Two of them are frequently used today: Calendar
and Date
. In this text using the second one, Date
, is the subject. Although it has many deprecated methods, we use one of its alive members called getTime()
to implement the program.
Using the Code
As said before, we create a TimeUtil
class at an instance level which means all of its members are instance ones. The class has private
members with public
accessors (getters and setters) so behind the scenes there is a good abstraction and encapsulation.
It has just one constructor (absolutely you can extend it to has many) in which a Date
object is instantiated and in turn getTime()
invoked by it. The getTime()
method is an instance method of the Date
class which returns the number of milliseconds since January 1, 1970, 00:00:00 GMT (known as UNIX epoch).
All of the class logic is encapsulated in one method called localizer
and also in getters.
To use the class in your apps, you must create an instance of that and set time offsets from GMT. Then call getters of your object to do what you want.
Additional notes are in code snippets below:
package Main;
import java.util.Date;
public class TimeUtil {
private Date curDate;
private long curTimeSeconds;
private byte GMTSecond;
private byte GMTMinute;
private byte GMTHour;
private byte LocalSecond;
private byte LocalMinute;
private byte LocalHour;
private byte hourOffset;
private byte minuteOffset;
public TimeUtil(){
curDate = new Date();
curTimeSeconds = curDate.getTime()/1000;
}
public byte getGMTSecond() {
return (byte) (curTimeSeconds%60);
}
public byte getGMTMinute(){
return (byte) (curTimeSeconds/60%60);
}
public byte getGMTHour(){
return (byte) (curTimeSeconds/3600%24);
}
public void setHourOffset(byte hourOffset){
this.hourOffset = hourOffset;
}
public byte getHourOffset(){
return hourOffset;
}
public void setMinuteOffset(byte minuteOffset){
this.minuteOffset = minuteOffset;
}
public byte getMinuteOffset(){
return minuteOffset;
}
public byte getLocalSecond(){
return getGMTSecond();
}
public byte getLocalMinute(){
localizer();
return LocalMinute;
}
public byte getLocalHour(){
localizer();
return LocalHour;
}
private void localizer(){
byte hourTemp = (byte) (getGMTHour() + getHourOffset());
byte minuteTemp = (byte) (getGMTMinute() + getMinuteOffset());
if(minuteTemp >= 60){
LocalMinute = (byte) (minuteTemp%60);
if(hourTemp + 1 >= 24){
LocalHour = (byte) ((hourTemp + 1)%24);
}
else if (hourTemp + 1 < 0){
LocalHour = (byte) (hourTemp + 24);
}
else
LocalHour = (byte) (hourTemp + 1);
}
else if(minuteTemp < 0){
LocalMinute = (byte) (minuteTemp + 60);
if(hourTemp - 1 >= 24){
LocalHour = (byte) ((hourTemp - 1)%24);
}
else if (hourTemp - 1 < 0){
LocalHour = (byte) (hourTemp + 23);
}
else
LocalHour = (byte) (hourTemp - 1);
}
else {
LocalMinute = minuteTemp;
if(hourTemp >= 24){
LocalHour = (byte) (hourTemp%24);
}
else if (hourTemp < 0){
LocalHour = (byte) (hourTemp + 24);
}
else
LocalHour = hourTemp;
}
}
}
Some Tips and Notes
Using byte
to store variables is for optimization purposes and speeding up performance.
Using javadoc comments /** */
will enable other programmers discover ideas in your code and make the program more readable. They can be extracted into an HTML file using the JDK’s javadoc command. For more information, see java.sun.com/j2se/javadoc.
Calling curTimeSeconds = curDate.getTime()/1000;
in the constructor, we avoid calling it in all of our accessors. This is a huge improvement!
Feel free to develop. :)