自学内容网 自学内容网

day20-API(时间类 基本类型与字符串之间的转换)

第一章 Date类

1.1 Date概述

java.util.Date`类 表示特定的瞬间,精确到毫秒。

  • public Date():可以自动设置当前系统时间的毫秒时刻。

  • public Date(long date):可以自定义毫秒时刻

// 创建日期对象,把当前的时间
         System.out.println(new Date()); // Tue Jan 16 14:37:35 CST 2020
         // 创建日期对象,把当前的毫秒值转成日期对象
         System.out.println(new Date(0L)); // Thu Jan 01 08:00:00 CST 1970

tips:在使用println方法时,会自动调用Date类中的toString方法。Date类对Object类中的toString方法进行了覆盖重写,所以结果为指定格式的字符串。

1.2 Date常用方法

Date类中的多数方法已经过时,常用的方法有:

  • public long getTime() 把日期对象转换成对应的时间毫秒值。

  • public void setTime(long time) 把方法参数给定的毫秒值设置给日期对象

//创建日期对象
         Date d = new Date();
         
         //public long getTime():获取的是日期对象从1970年1月1日 00:00:00到现在的毫秒值
         //System.out.println(d.getTime() * 1.0 / 1000 / 60 / 60 / 24 / 365 + "年");
 ​
         //public void setTime(long time):设置时间,给的是毫秒值
         //long time = 1000*60*60;
         long time = System.currentTimeMillis();
         d.setTime(time);
 ​
         System.out.println(d);

小结:Date表示特定的时间瞬间,我们可以使用Date对象对时间进行操作。

第二章 SimpleDateFormat类

java.text.SimpleDateFormat 是日期/时间格式化类,可以在Date对象与String对象之间进行来回转换。

  • 格式化:按照指定的格式,把Date对象转换为String对象。

  • 解析:按照指定的格式,把String对象转换为Date对象。

2.1 构造方法

由于DateFormat为抽象类,不能直接使用,所以需要常用的子类java.text.SimpleDateFormat。这个类需要一个模式(格式)来指定格式化或解析的标准。构造方法为:

  • public SimpleDateFormat(String pattern):用给定的模式和默认语言环境的日期格式符号构造SimpleDateFormat。参数pattern是一个字符串,代表日期时间的自定义格式。

2.2 格式规则

常用的格式规则为:

标识字母(区分大小写)含义
y
M
d
H
m
s

备注:更详细的格式规则,可以参考SimpleDateFormat类的API文档。

2.3 常用方法

DateFormat类的常用方法有:

  • public String format(Date date):将Date对象格式化为字符串。

  • public Date parse(String source):将字符串解析为Date对象。

小结:DateFormat可以将Date对象和字符串相互转换。

2.4 练习

 //1.可以通过2000-11-11进行解析,解析成一个Date对象
 String str = "2000-11-11";
 //2.解析
 SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy-MM-dd");
 Date date = sdf1.parse(str);
 //3.格式化
 SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy年MM月dd日");
 String result = sdf2.format(date);
 System.out.println(result);

第三章 Calendar类

3.1 概述

  • java.util.Calendar类表示一个“日历类”,可以进行日期运算。它是一个抽象类,不能创建对象,我们可以使用它的子类:java.util.GregorianCalendar类。

  • 有两种方式可以获取GregorianCalendar对象:

    • 直接创建GregorianCalendar对象;

    • 通过Calendar的静态方法getInstance()方法获取GregorianCalendar对象【本次课使用】

3.2 常用方法

方法名说明
public static Calendar getInstance()获取一个它的子类GregorianCalendar对象。
public int get(int field)获取某个字段的值。field参数表示获取哪个字段的值, 可以使用Calender中定义的常量来表示: Calendar.YEAR : 年 Calendar.MONTH :月 Calendar.DAY_OF_MONTH:月中的日期 Calendar.HOUR:小时 Calendar.MINUTE:分钟 Calendar.SECOND:秒 Calendar.DAY_OF_WEEK:星期
public void set(int field,int value)设置某个字段的值
public void add(int field,int amount)为某个字段增加/减少指定的值

3.3 get方法示例       

 //1.获取一个GregorianCalendar对象
         Calendar instance = Calendar.getInstance();//获取子类对象
         //2.打印子类对象
         System.out.println(instance);
 ​
         //3.获取属性
         int year = instance.get(Calendar.YEAR);
         int month = instance.get(Calendar.MONTH) + 1;//Calendar的月份值是0-11
         int day = instance.get(Calendar.DAY_OF_MONTH);
         int hour = instance.get(Calendar.HOUR);
         int minute = instance.get(Calendar.MINUTE);
         int second = instance.get(Calendar.SECOND);
         int week = instance.get(Calendar.DAY_OF_WEEK);//返回值范围:1--7,分别表示:"星期日","星期一","星期二",...,"星期六"
         System.out.println(year + "年" + month + "月" + day + "日" + hour + ":" + minute + ":" + second);
         System.out.println(getWeek(week));
 ​
     //查表法,查询星期几
     public static String getWeek(int w) {//w = 1 --- 7
         //做一个表(数组)
         String[] weekArray = {"星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"};
         //            索引      [0]      [1]       [2]      [3]       [4]      [5]      [6]
         //查表
         return weekArray[w - 1];

3.4 set方法示例:       

 //设置属性——set(int field,int value):
         Calendar c1 = Calendar.getInstance();//获取当前日期
 ​
         //计算班长出生那天是星期几(假如班长出生日期为:1998年3月18日)
         c1.set(Calendar.YEAR, 1998);
         c1.set(Calendar.MONTH, 3 - 1);//转换为Calendar内部的月份值
         c1.set(Calendar.DAY_OF_MONTH, 18);
 ​
         int w = c1.get(Calendar.DAY_OF_WEEK);
         System.out.println("班长出生那天是:" + getWeek(w)); 
     }
 ​
     //查表法,查询星期几
     public static String getWeek(int w) {//w = 1 --- 7
         //做一个表(数组)
         String[] weekArray = {"星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"};
         //            索引      [0]      [1]       [2]      [3]       [4]      [5]      [6]
         //查表
         return weekArray[w - 1];
     }

3.5 add方法示例:      

  //计算200天以后是哪年哪月哪日,星期几?
         Calendar c2 = Calendar.getInstance();//获取当前日期
         c2.add(Calendar.DAY_OF_MONTH, 200);//日期加200

第四章 JDK8时间相关类

JDK8时间类类名作用
ZoneId时区
Instant时间戳
ZoneDateTime带时区的时间
DateTimeFormatter用于时间的格式化和解析
LocalDate年、月、日
LocalTime时、分、秒
LocalDateTime年、月、日、时、分、秒
Duration时间间隔(秒,纳,秒)
Period时间间隔(年,月,日)
ChronoUnit时间间隔(所有单位)

4.1 ZoneId 时区

 /*
         static Set<string> getAvailableZoneIds() 获取Java中支持的所有时区
         static ZoneId systemDefault() 获取系统默认时区
         static Zoneld of(string zoneld) 获取一个指定时区
         */
 ​
 //1.获取所有的时区名称
 Set<String> zoneIds = ZoneId.getAvailableZoneIds();
 System.out.println(zoneIds.size());//600
 System.out.println(zoneIds);// Asia/Shanghai
 ​
 //2.获取当前系统的默认时区
 ZoneId zoneId = ZoneId.systemDefault();
 System.out.println(zoneId);//Asia/Shanghai
 ​
 //3.获取指定的时区
 ZoneId zoneId1 = ZoneId.of("Asia/Pontianak");
 System.out.println(zoneId1);//Asia/Pontianak

4.2 Instant 时间戳

 /*
             static Instant now() 获取当前时间的Instant对象(标准时间)
             static Instant ofXxxx(long epochMilli) 根据(秒/毫秒/纳秒)获取Instant对象
             ZonedDateTime atZone(ZoneIdzone) 指定时区
             boolean isxxx(Instant otherInstant) 判断系列的方法
             Instant minusXxx(long millisToSubtract) 减少时间系列的方法
             Instant plusXxx(long millisToSubtract) 增加时间系列的方法
         */
 //1.获取当前时间的Instant对象(标准时间)
 Instant now = Instant.now();
 System.out.println(now);
 ​
 //2.根据(秒/毫秒/纳秒)获取Instant对象
 Instant instant1 = Instant.ofEpochMilli(0L);
 System.out.println(instant1);//1970-01-01T00:00:00z
 ​
 Instant instant2 = Instant.ofEpochSecond(1L);
 System.out.println(instant2);//1970-01-01T00:00:01Z
 ​
 Instant instant3 = Instant.ofEpochSecond(1L, 1000000000L);
 System.out.println(instant3);//1970-01-01T00:00:027
 ​
 //3. 指定时区
 ZonedDateTime time = Instant.now().atZone(ZoneId.of("Asia/Shanghai"));
 System.out.println(time);
 ​
 ​
 //4.isXxx 判断
 Instant instant4=Instant.ofEpochMilli(0L);
 Instant instant5 =Instant.ofEpochMilli(1000L);
 ​
 //5.用于时间的判断
 //isBefore:判断调用者代表的时间是否在参数表示时间的前面
 boolean result1=instant4.isBefore(instant5);
 System.out.println(result1);//true
 ​
 //isAfter:判断调用者代表的时间是否在参数表示时间的后面
 boolean result2 = instant4.isAfter(instant5);
 System.out.println(result2);//false
 ​
 //6.Instant minusXxx(long millisToSubtract) 减少时间系列的方法
 Instant instant6 =Instant.ofEpochMilli(3000L);
 System.out.println(instant6);//1970-01-01T00:00:03Z
 ​
 Instant instant7 =instant6.minusSeconds(1);
 System.out.println(instant7);//1970-01-01T00:00:02Z
 

4.3 ZoneDateTime 带时区的时间

 /*
             static ZonedDateTime now() 获取当前时间的ZonedDateTime对象
             static ZonedDateTime ofXxxx(。。。) 获取指定时间的ZonedDateTime对象
             ZonedDateTime withXxx(时间) 修改时间系列的方法
             ZonedDateTime minusXxx(时间) 减少时间系列的方法
             ZonedDateTime plusXxx(时间) 增加时间系列的方法
          */
 //1.获取当前时间对象(带时区)
 ZonedDateTime now = ZonedDateTime.now();
 System.out.println(now);
 ​
 //2.获取指定的时间对象(带时区)1/年月日时分秒纳秒方式指定
 ZonedDateTime time1 = ZonedDateTime.of(2023, 10, 1,
                                        11, 12, 12, 0, ZoneId.of("Asia/Shanghai"));
 System.out.println(time1);
 ​
 //通过Instant + 时区的方式指定获取时间对象
 Instant instant = Instant.ofEpochMilli(0L);
 ZoneId zoneId = ZoneId.of("Asia/Shanghai");
 ZonedDateTime time2 = ZonedDateTime.ofInstant(instant, zoneId);
 System.out.println(time2);
 ​
 ​
 //3.withXxx 修改时间系列的方法
 ZonedDateTime time3 = time2.withYear(2000);
 System.out.println(time3);
 ​
 //4. 减少时间
 ZonedDateTime time4 = time3.minusYears(1);
 System.out.println(time4);
 ​
 //5.增加时间
 ZonedDateTime time5 = time4.plusYears(1);
 System.out.println(time5);

4.4DateTimeFormatter 用于时间的格式化和解析

 /*
             static DateTimeFormatter ofPattern(格式) 获取格式对象
             String format(时间对象) 按照指定方式格式化
         */
 //获取时间对象
 ZonedDateTime time = Instant.now().atZone(ZoneId.of("Asia/Shanghai"));
 ​
 // 解析/格式化器
 DateTimeFormatter dtf1=DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm;ss EE a");
 // 格式化
 System.out.println(dtf1.format(time));

4.5LocalDate 年、月、日

 //1.获取当前时间的日历对象(包含 年月日)
 LocalDate nowDate = LocalDate.now();
 //System.out.println("今天的日期:" + nowDate);
 //2.获取指定的时间的日历对象
 LocalDate ldDate = LocalDate.of(2023, 1, 1);
 System.out.println("指定日期:" + ldDate);
 ​
 System.out.println("=============================");
 ​
 //3.get系列方法获取日历中的每一个属性值//获取年
 int year = ldDate.getYear();
 System.out.println("year: " + year);
 //获取月//方式一:
 Month m = ldDate.getMonth();
 System.out.println(m);
 System.out.println(m.getValue());
 ​
 //方式二:
 int month = ldDate.getMonthValue();
 System.out.println("month: " + month);
 ​
 ​
 //获取日
 int day = ldDate.getDayOfMonth();
 System.out.println("day:" + day);
 ​
 //获取一年的第几天
 int dayofYear = ldDate.getDayOfYear();
 System.out.println("dayOfYear:" + dayofYear);
 ​
 //获取星期
 DayOfWeek dayOfWeek = ldDate.getDayOfWeek();
 System.out.println(dayOfWeek);
 System.out.println(dayOfWeek.getValue());
 ​
 //is开头的方法表示判断
 System.out.println(ldDate.isBefore(ldDate));
 System.out.println(ldDate.isAfter(ldDate));
 ​
 //with开头的方法表示修改,只能修改年月日
 LocalDate withLocalDate = ldDate.withYear(2000);
 System.out.println(withLocalDate);
 ​
 //minus开头的方法表示减少,只能减少年月日
 LocalDate minusLocalDate = ldDate.minusYears(1);
 System.out.println(minusLocalDate);
 ​
 ​
 //plus开头的方法表示增加,只能增加年月日
 LocalDate plusLocalDate = ldDate.plusDays(1);
 System.out.println(plusLocalDate);
 ​
 //-------------
 // 判断今天是否是你的生日
 LocalDate birDate = LocalDate.of(2000, 1, 1);
 LocalDate nowDate1 = LocalDate.now();
 ​
 MonthDay birMd = MonthDay.of(birDate.getMonthValue(), birDate.getDayOfMonth());
 MonthDay nowMd = MonthDay.from(nowDate1);
 ​
 System.out.println("今天是你的生日吗? " + birMd.equals(nowMd));//今天是你的生日吗?

4.6 LocalTime 时、分、秒

 // 获取本地时间的日历对象。(包含 时分秒)
 LocalTime nowTime = LocalTime.now();
 System.out.println("今天的时间:" + nowTime);
 ​
 int hour = nowTime.getHour();//时
 System.out.println("hour: " + hour);
 ​
 int minute = nowTime.getMinute();//分
 System.out.println("minute: " + minute);
 ​
 int second = nowTime.getSecond();//秒
 System.out.println("second:" + second);
 ​
 int nano = nowTime.getNano();//纳秒
 System.out.println("nano:" + nano);
 System.out.println("------------------------------------");
 System.out.println(LocalTime.of(8, 20));//时分
 System.out.println(LocalTime.of(8, 20, 30));//时分秒
 System.out.println(LocalTime.of(8, 20, 30, 150));//时分秒纳秒
 LocalTime mTime = LocalTime.of(8, 20, 30, 150);
 ​
 //is系列的方法
 System.out.println(nowTime.isBefore(mTime));
 System.out.println(nowTime.isAfter(mTime));
 ​
 //with系列的方法,只能修改时、分、秒
 System.out.println(nowTime.withHour(10));
 ​
 //plus系列的方法,只能修改时、分、秒
 System.out.println(nowTime.plusHours(10));

4.7 LocalDateTime 年、月、日、时、分、秒

 
// 当前时间的的日历对象(包含年月日时分秒)
 LocalDateTime nowDateTime = LocalDateTime.now();
 ​
 System.out.println("今天是:" + nowDateTime);//今天是:
 System.out.println(nowDateTime.getYear());//年
 System.out.println(nowDateTime.getMonthValue());//月
 System.out.println(nowDateTime.getDayOfMonth());//日
 System.out.println(nowDateTime.getHour());//时
 System.out.println(nowDateTime.getMinute());//分
 System.out.println(nowDateTime.getSecond());//秒
 System.out.println(nowDateTime.getNano());//纳秒
 // 日:当年的第几天
 System.out.println("dayofYear:" + nowDateTime.getDayOfYear());
 //星期
 System.out.println(nowDateTime.getDayOfWeek());
 System.out.println(nowDateTime.getDayOfWeek().getValue());
 //月份
 System.out.println(nowDateTime.getMonth());
 System.out.println(nowDateTime.getMonth().getValue());
 ​
 LocalDate ld = nowDateTime.toLocalDate();
 System.out.println(ld);
 ​
 LocalTime lt = nowDateTime.toLocalTime();
 System.out.println(lt.getHour());
 System.out.println(lt.getMinute());
 System.out.println(lt.getSecond());

4.8 Duration 时间间隔(秒,纳,秒)

// 本地日期时间对象。
 LocalDateTime today = LocalDateTime.now();
 System.out.println(today);
 ​
 // 出生的日期时间对象
 LocalDateTime birthDate = LocalDateTime.of(2000, 1, 1, 0, 0, 0);
 System.out.println(birthDate);
 ​
 Duration duration = Duration.between(birthDate, today);//第二个参数减第一个参数
 System.out.println("相差的时间间隔对象:" + duration);
 ​
 System.out.println("============================================");
 System.out.println(duration.toDays());//两个时间差的天数
 System.out.println(duration.toHours());//两个时间差的小时数
 System.out.println(duration.toMinutes());//两个时间差的分钟数
 System.out.println(duration.toMillis());//两个时间差的毫秒数
 System.out.println(duration.toNanos());//两个时间差的纳秒数

4.9 Period 时间间隔(年,月,日) 

// 当前本地 年月日
 LocalDate today = LocalDate.now();
 System.out.println(today);
 ​
 // 生日的 年月日
 LocalDate birthDate = LocalDate.of(2000, 1, 1);
 System.out.println(birthDate);
 ​
 Period period = Period.between(birthDate, today);//第二个参数减第一个参数
 ​
 System.out.println("相差的时间间隔对象:" + period);
 System.out.println(period.getYears());
 System.out.println(period.getMonths());
 System.out.println(period.getDays());
 ​
 System.out.println(period.toTotalMonths());

4.10 ChronoUnit 时间间隔(所有单位)

 // 当前时间
 LocalDateTime today = LocalDateTime.now();
 System.out.println(today);
 // 生日时间
 LocalDateTime birthDate = LocalDateTime.of(2000, 1, 1,0, 0, 0);
 System.out.println(birthDate);
 ​
 System.out.println("相差的年数:" + ChronoUnit.YEARS.between(birthDate, today));
 System.out.println("相差的月数:" + ChronoUnit.MONTHS.between(birthDate, today));
 System.out.println("相差的周数:" + ChronoUnit.WEEKS.between(birthDate, today));
 System.out.println("相差的天数:" + ChronoUnit.DAYS.between(birthDate, today));
 System.out.println("相差的时数:" + ChronoUnit.HOURS.between(birthDate, today));
 System.out.println("相差的分数:" + ChronoUnit.MINUTES.between(birthDate, today));
 System.out.println("相差的秒数:" + ChronoUnit.SECONDS.between(birthDate, today));
 System.out.println("相差的毫秒数:" + ChronoUnit.MILLIS.between(birthDate, today));
 System.out.println("相差的微秒数:" + ChronoUnit.MICROS.between(birthDate, today));
 System.out.println("相差的纳秒数:" + ChronoUnit.NANOS.between(birthDate, today));
 System.out.println("相差的半天数:" + ChronoUnit.HALF_DAYS.between(birthDate, today));
 System.out.println("相差的十年数:" + ChronoUnit.DECADES.between(birthDate, today));
 System.out.println("相差的世纪(百年)数:" + ChronoUnit.CENTURIES.between(birthDate, today));
 System.out.println("相差的千年数:" + ChronoUnit.MILLENNIA.between(birthDate, today));
 System.out.println("相差的纪元数:" + ChronoUnit.ERAS.between(birthDate, today));

第五章 包装类

5.1 概述

基本类型对应的包装类(位于JAVA.LANG包中)
byteByte
shortShort
intInteger
longLong
floatFloat
doubleDouble
charCharacter
booleanBoolean

5.2 Integer类

  • Integer类概述

    包装一个对象中的原始类型 int 的值

  • Integer类构造方法及静态方法

方法名说明
public Integer(int value)根据 int 值创建 Integer 对象(过时)
public Integer(String s)根据 String 值创建 Integer 对象(过时)
public static Integer valueOf(int i)返回表示指定的 int 值的 Integer 实例
public static Integer valueOf(String s)返回保存指定String值的 Integer 对象
static string tobinarystring(int i)得到二进制
static string tooctalstring(int i)得到八进制
static string toHexstring(int i)得到十六进制
static int parseInt(string s)将字符串类型的整数转成int类型的整数

5.3 装箱与拆箱

基本类型与对应的包装类对象之间,来回转换的过程称为”装箱“与”拆箱“:

  • 装箱:从基本类型转换为对应的包装类对象。

  • 拆箱:从包装类对象转换为对应的基本类型。

用Integer与 int为例:(看懂代码即可)

基本数值---->包装对象

 Integer i = new Integer(4);//使用构造函数函数
 Integer iii = Integer.valueOf(4);//使用包装类中的valueOf方法

包装对象---->基本数值

 int num = i.intValue();

5.4 自动装箱与自动拆箱

由于我们经常要做基本类型与包装类之间的转换,从Java 5(JDK 1.5)开始,基本类型与包装类的装箱、拆箱动作可以自动完成。例如:

 Integer i = 4;//自动装箱。相当于Integer i = Integer.valueOf(4);
 i = i + 5;//等号右边:将i对象转成基本数值(自动拆箱) i.intValue() + 5;
 //加法运算完成后,再次装箱,把基本数值转成对象。

5.5 基本类型与字符串之间的转换

基本类型转换为String

  • 转换方式

  • 方式一:直接在数字后加一个空字符串

  • 方式二:通过String类静态方法valueOf()

 public class IntegerDemo {
     public static void main(String[] args) {
         //int --- String
         int number = 100;
         //方式1
         String s1 = number + "";
         System.out.println(s1);
         //方式2
         //public static String valueOf(int i)
         String s2 = String.valueOf(number);
         System.out.println(s2);
     }
 }

String转换成基本类型

除了Character类之外,其他所有包装类都具有parseXxx静态方法可以将字符串参数转换为对应的基本类型:

  • public static byte parseByte(String s):将字符串参数转换为对应的byte基本类型。

  • public static short parseShort(String s):将字符串参数转换为对应的short基本类型。

  • public static int parseInt(String s):将字符串参数转换为对应的int基本类型。

  • public static long parseLong(String s):将字符串参数转换为对应的long基本类型。

  • public static float parseFloat(String s):将字符串参数转换为对应的float基本类型。

  • public static double parseDouble(String s):将字符串参数转换为对应的double基本类型。

  • public static boolean parseBoolean(String s):将字符串参数转换为对应的boolean基本类型。

代码使用(仅以Integer类的静态方法parseXxx为例)如:

  • 转换方式

    • 方式一:先将字符串数字转成Integer,再调用valueOf()方法

    • 方式二:通过Integer静态方法parseInt()进行转换 

public class IntegerDemo {
     public static void main(String[] args) {
         //String --- int
         String s = "100";
         //方式1:String --- Integer --- int
         Integer i = Integer.valueOf(s);
         int x = i.intValue();
         System.out.println(x);
         //方式2
         //public static int parseInt(String s)
         int y = Integer.parseInt(s);
         System.out.println(y);
     }
 }

注意:如果字符串参数的内容无法正确转换为对应的基本类型,则会抛出java.lang.NumberFormatException异常。


原文地址:https://blog.csdn.net/2303_79357053/article/details/142612756

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!