Here you can find the source of getLasthour()
public static String getLasthour()
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.Calendar; public class Main { public static String getLasthour() { Calendar cal = Calendar.getInstance(); cal.add(Calendar.HOUR_OF_DAY, -1); String yesterday = new SimpleDateFormat("yyyy-MM-dd HH").format(cal.getTime()); return yesterday; }//from w w w . j a v a 2 s .c om }