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