当前位置:编程学习 > JAVA >>

将Timestamp转换成Date

代码如下:

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


摘自 hellostory的专栏
补充:软件开发 , Java ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,