Here you can find the source of getPreHour()
public static int getPreHour()
//package com.java2s; import java.util.Calendar; public class Main { public static int getPreHour() { Calendar now = Calendar.getInstance(); now.add(Calendar.HOUR_OF_DAY, -1); return now.get(Calendar.HOUR_OF_DAY); }//w w w.ja v a 2 s . c o m }