大家好,又见面了,我是你们的朋友全栈君。
unix时间戳转Date
注意,不能直接使用Integer进行乘除和转换,需要转成bigDecimal去处理,否则转换出来的时间只会是1970-xxxx
package hutoolTest;
import cn.hutool.core.date.DateTime;
import java.math.BigDecimal;
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateTest {
public static void main(String[] args) {
Integer time=1637337600;
//1、使用hutool
System.out.println(DateTime.of(new BigDecimal(time).multiply(new BigDecimal(1000)).longValue()));
//2、使用SimpleDateFormat
String date = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date(new BigDecimal(time).multiply(new BigDecimal(1000)).longValue()));
System.out.println(date);
}
}
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/148993.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...