java怎样将string时间戳转换为date
发布网友
发布时间:2022-05-02 02:37
我来回答
共2个回答
热心网友
时间:2022-06-27 02:39
1首先把字符串转成标准的时间格式:
String time = "xxxxxxx";
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
String plan = sdf.format();
2.再次转成Date
sdf.parse(plan);
热心网友
时间:2022-06-27 02:40
new Date(String时间戳);