Introduction - If you have any usage issues, please Google them yourself
JAVA compiled using property management system, part of the code:
package com.wy.util
import java.util.*
public class nowdate {
public static int getSystime() {
Calendar tt = Calendar.getInstance() //获取Calendar对象
Date time = tt.getTime() //获取日期
int year = time.getYear()+ 1900 //获取年份
int month = time.getMonth()+ 1 //获取月份
return year* 100+ month //组成数字
}
public static void main(String args[]) {
Calendar tt = Calendar.getInstance()
Date time = tt.getTime()
int year = time.getYear()+ 1900
int month = time.getMonth()+ 1
}
}