wzy
2020-07-12 473609b38373aafec06b74984c73472ad5616d0a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.xcong.excoin;
 
import cn.hutool.core.date.DateUtil;
import cn.hutool.core.text.UnicodeUtil;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
 
/**
 * @author wzy
 * @date 2020-05-26
 **/
@SpringBootTest
public class SmsTest {
 
    public static void main(String[] args) {
        long time = 1594363341988L;
 
        System.out.println(DateUtil.date(time));
    }
 
}