Date类代表了一个特定的时间,以毫秒为精度。
常用构造方法:
1. Date()
分配一个Date对象并对其进行初始化,以便它便是分配的时间,以最接近的毫秒为单位。
2. Date(long date)
分配一个Date对象,并将其初始化为便是从标准基准时间(称为“时代”),即1970年1月1日00:00:00GMT起指定的毫秒值。
简单使用:
import java.util.Date;
public class test2 {
public static void main(String[] args) {
Date date1 = new Date();
System.out.println(date1); //得到的是当前日期的信息 Sat Apr 23 19:36:32 GMT+08:00 2022
long date = 1000*60*60; // 以毫秒为单位,此处表示1小时
Date date2 = new Date(date);
System.out.println(date2); // 因为东八区,所以加了8的小时,显示为9点。Thu Jan 01 09:00:00 GMT+08:00 1970
}
}
常用方法:
import java.util.Date;
public class test2 {
public static void main(String[] args) {
Date date1 = new Date();
//1. public long getTime() 返回日期对象从 January 1, 1970, 00:00:00 GMT到现在的毫秒值
System.out.println(date1.getTime());
System.out.println(date1.getTime() * 1.0 / 1000 / 60 /60 /24 / 365 + "年");
// 2. public void setTime(long time)
// 传入的是毫秒值,返回从 January 1, 1970, 00:00:00 到time毫秒的时间
// System.currentTimeMillis() 返回的是从 January 1, 1970, 00:00:00 到现在的毫秒值
long time = System.currentTimeMillis();
date1.setTime(time);
System.out.println(date1); // 返回的是当前的时间
}
}
2. SimpleDateFormat类 (java.text.SimpleDateFormat)
SimpleDateFormat 用于以区域设置敏感党的方式格式化和解析日期。
主要进行日期格式化和解析。
- 可以将Date对象格式化为 日期/时间的字符串
- 可以将给定字符串解析为日期对象
日期和时间格式由日期和时间模式字符串指定。
常用的模式字母及对应关系如下:
y 年 | M 月 | d 日 | H 小时 | m 分 | s 秒
使用案例:
public class test2 {
public static void main(String[] args) throws ParseException {
// 1.格式化,从Date到String
Date d1 = new Date();
// 使用默认的模式和日期格式,构建SimpleDateFormat对象
SimpleDateFormat simpleDateFormat = new SimpleDateFormat();
String s = simpleDateFormat.format(d1);
System.out.println(s); // 2022/4/23 下午8:06
// 给定时间和日期格式
SimpleDateFormat simpleDateFormat1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String s1 = simpleDateFormat1.format(d1);
System.out.println(s1); // 2022-04-23 20:08:11
// 2.从字符串解析为Date对象
String s2 = "2022年1月2日 13:23:12";
SimpleDateFormat simpleDateFormat2 = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");
Date d2 = simpleDateFormat2.parse(s2);
System.out.println(d2); // Sun Jan 02 13:23:12 GMT+08:00 2022
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)