【MapSheep】
[好记性不如烂笔头]
import java.util.Date;
import java.text.SimpleDateFormat;

public class TimestampConverter {
    public static void main(String[] args) {
        long timestamp = 1612345678901L;
        Date date = new Date(timestamp);
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        String formattedDateTime = sdf.format(date);
        System.out.println(formattedDateTime);
    }
}
posted on 2023-10-30 15:24  (Play)  阅读(124)  评论(0编辑  收藏  举报