Java tutorial
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Locale; public class Main { public static String sqlTime(Long dTime) { SimpleDateFormat sqlTime = new SimpleDateFormat("yy-MM-dd hh:mm:ss", Locale.ENGLISH); //For title display return sqlTime.format(dTime); } }