微信登录

日期 - Date() - Date类

  1. import java.util.Date;
  1. public class DateDemo {
  2. public static void main(String args[]) {
  3. // 初始化 Date 对象
  4. Date date = new Date();
  5. // 使用 toString() 函数显示日期时间
  6. System.out.println(date.toString());
  7. }
  8. }
  9. Mon May 04 09:51:52 CDT 2013