1 /** 2 * 把long 转换成 日期 再转换成String类型 3 */ 4 public String transferLongToDate(String dateFormat, Long millSec) { 5 SimpleDateFormat sdf = new SimpleDateFormat(dateFormat); 6 Date date = new Date(millSec); 7 return sdf.format(date); 8 }
上面是方法 第一个参数:dateFormat 指的是你希望转换成的String类型的样式 第二个参数: 需要转换的时间 long类型
例如:
transferLongToDate("yyyy-MM-dd HH:mm:ss",1245678944);
时间: 2024-10-20 11:10:49