?? test.java
字號:
/*
* test.java
*
* Created on 2007年11月19日, 下午1:50
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package dianping;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
*冷漠大神 q 361619004
* @author Angel
*/
public class test {
/** Creates a new instance of test */
public test() {
}
public static void main(String args[])
{
SimpleDateFormat dateFm = new SimpleDateFormat("yyyy-MM-dd"); //格式化當前系統(tǒng)日期
String dateTime = dateFm.format(new java.util.Date());
System.out.println(dateTime);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -