gao
2020-07-13 fb73002d31a565e65df8da36af8f3a0e20a21e9d
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));
    }
 
}