时间戳转换为年月日时分秒

 

 

//传入时间戳即可  
 public String conversionTime(String timeStamp) {
         //yyyy-MM-dd HH:mm:ss 转换的时间格式  可以自定义
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        //转换 
        String time = sdf.format(new Date(Long.parseLong(timeStamp)));
        return time;
    }

 

上一篇:MySQL为什么最终要去选择B+Tree?


下一篇:GDB调试fortran程序打印变量的方法