2023-06-14 13:42:14 +08:00
|
|
|
package test;
|
|
|
|
|
|
2025-04-08 17:37:18 +08:00
|
|
|
import weaver.common.DateUtil;
|
|
|
|
|
|
2023-06-14 13:42:14 +08:00
|
|
|
/**
|
|
|
|
|
* @Author weaver_cl
|
|
|
|
|
* @Description:
|
|
|
|
|
* @Date 2022/10/9
|
|
|
|
|
* @Version V1.0
|
|
|
|
|
**/
|
|
|
|
|
public class MainTest {
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
2025-04-08 17:37:18 +08:00
|
|
|
String month = DateUtil.getCurrentDate().substring(0,7);
|
2023-06-14 13:42:14 +08:00
|
|
|
|
2025-04-08 17:37:18 +08:00
|
|
|
System.out.println(month);
|
2023-06-14 13:42:14 +08:00
|
|
|
}
|
|
|
|
|
}
|