Here you can find the source of timestampToString(Timestamp timestamp)
public static String timestampToString(Timestamp timestamp)
//package com.java2s; // This software may not be used, sold, licensed, transferred, copied import java.sql.Timestamp; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static String timestampToString(Timestamp timestamp) { SimpleDateFormat dateFormatForJqplotGraphs = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); return dateFormatForJqplotGraphs.format(new Date(timestamp.getTime())); }// w w w.j a va 2 s . com }