时间戳转换日期格式
1、时间戳 入参 String类型
import java.text.DateFormat;
import java.text.SimpleDateFormat;
// 毫秒时间戳转换日期格式:2023-04-21
def date = new Date(Long.parseLong("1712473439000"));// 需要转Long
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
def startDate = dateFormat.format(date);
logs.add('日志信息:'+startDate);
2、时间戳 入参 Int类型
import java.text.DateFormat;
import java.text.SimpleDateFormat;
// 毫秒时间戳转换日期格式:2023-04-21
def date = new Date(1712587518121);// 直接获取时间戳,无需转换类型
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
def formattedDate = dateFormat.format(date);
return formattedDate;
本文来自博客园,作者:幽忧一世,转载请注明原文链接:https://www.cnblogs.com/JojoMiss/p/18122859