You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
weaver-develop/src/test/MainTest.java

19 lines
309 B
Java

2 years ago
package test;
import weaver.common.DateUtil;
2 years ago
/**
* @Author weaver_cl
* @Description:
* @Date 2022/10/9
* @Version V1.0
**/
public class MainTest {
public static void main(String[] args) {
String month = DateUtil.getCurrentDate().substring(0,7);
2 years ago
System.out.println(month);
2 years ago
}
}