Here you can find the source of timestampToDateString(Timestamp ts)
public static String timestampToDateString(Timestamp ts)
//package com.java2s; //License from project: Open Source License import java.sql.Timestamp; import java.text.DateFormat; import java.text.SimpleDateFormat; public class Main { public static String timestampToDateString(Timestamp ts) { String tsStr = ""; DateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); tsStr = sdf.format(ts);/*from w w w . ja v a2s. c o m*/ return tsStr; } }