mydate.java

来自「用Jsp实现的图书管理系统代码」· Java 代码 · 共 19 行

JAVA
19
字号
package DateBean;

import java.util.*;

public class MyDate{	
	int theyear=0;
	int themonth=0;
	int theday=0;
	String thedate=null;
	public String getDate(){
		Calendar calendar=Calendar.getInstance();
		theyear= calendar.get(Calendar.YEAR);
		themonth=calendar.get(Calendar.MONTH)+1;
		theday=calendar.get(Calendar.DAY_OF_MONTH);
		thedate=""+theyear+"年"+themonth+"月"+theday+"日";
		return thedate;
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?