Here you can find the source of formatToHour(Date date)
public static String formatToHour(Date date)
//package com.java2s; //License from project: Apache License import java.util.Date; public class Main { public static String formatToHour(Date date) { java.text.DateFormat format = new java.text.SimpleDateFormat("yyyyMMddHH"); return format.format(date); }/*w w w . j av a 2 s. co m*/ }