Here you can find the source of convertHour(Long createAt)
public static Integer convertHour(Long createAt)
//package com.java2s; //License from project: Apache License import java.util.Calendar; public class Main { public static Integer convertHour(Long createAt) { Calendar cal = Calendar.getInstance(); cal.setTimeInMillis(createAt);// w ww.j ava 2 s . c o m return cal.get(Calendar.HOUR); } }