lyh
8 小时以前 371365543363969fd3afcc404440c838817ecc3d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.lxzn.zip4j;
 
import com.lxzn.framework.utils.date.DateUtil;
import org.junit.Test;
 
import java.util.Date;
 
public class TestDateUtil {
    @Test
    public void testFormat() {
        String str = "2020-05-29 10:59:59.940";
        Date date = DateUtil.toDate(str, DateUtil.STR_DATE_TIME);
        String ddd = DateUtil.format(date, DateUtil.STR_DATE_TIME);
        System.out.println(ddd);
    }
}