将Timestamp转换成Date

代码如下:

/** * 将timestamp转换成date * @author hellostoy * @param tt * @return */ public static Date timestampToDate(Timestamp tt){ return new Date(tt.getTime()); }

你可能感兴趣的:(Date)