欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

JDK8時間相關(guān)類超詳細(xì)總結(jié)2(含多個實例)-創(chuàng)新互聯(lián)

一、帶時區(qū)的時間 1.獲取當(dāng)前時間對象(帶時區(qū))
import java.time.ZonedDateTime;
public class demo1 {public static void main(String[] args) {
	    ZonedDateTime now = ZonedDateTime.now();
        System.out.println(now);
      
    }
}

2023-01-13T19:24:18.389+08:00[Asia/Shanghai]

創(chuàng)新互聯(lián)建站是一家網(wǎng)站設(shè)計公司,集創(chuàng)意、互聯(lián)網(wǎng)應(yīng)用、軟件技術(shù)為一體的創(chuàng)意網(wǎng)站建設(shè)服務(wù)商,主營產(chǎn)品:響應(yīng)式網(wǎng)站建設(shè)、品牌網(wǎng)站建設(shè)、成都全網(wǎng)營銷推廣。我們專注企業(yè)品牌在網(wǎng)站中的整體樹立,網(wǎng)絡(luò)互動的體驗,以及在手機等移動端的優(yōu)質(zhì)呈現(xiàn)。做網(wǎng)站、網(wǎng)站設(shè)計、移動互聯(lián)產(chǎn)品、網(wǎng)絡(luò)運營、VI設(shè)計、云產(chǎn)品.運維為核心業(yè)務(wù)。為用戶提供一站式解決方案,我們深知市場的競爭激烈,認(rèn)真對待每位客戶,為客戶提供賞析悅目的作品,網(wǎng)站的價值服務(wù)。
2.獲取指定的時間對象(帶時區(qū))1/年月日時分秒納秒方式指定
import java.time.Instant;
public class demo1 {public static void main(String[] args) {
		ZonedDateTime time1 = ZonedDateTime.of(2023, 1, 1, 8, 30, 0, 0, ZoneId.of("Asia/Shanghai"));
        System.out.println(time1);
      
    }
}

2023-01-01T08:30+08:00[Asia/Shanghai]

3.通過Instant + 時區(qū)的方式指定獲取時間對象
import java.time.Instant;
public class demo1 {public static void main(String[] args) {Instant instant = Instant.ofEpochMilli(0L);
		ZoneId zoneId = ZoneId.of("Asia/Shanghai");
		ZonedDateTime time2 = ZonedDateTime.ofInstant(instant, zoneId);
		System.out.println(time2);
      
    }
}

1970-01-01T08:00+08:00[Asia/Shanghai]

4.修改時間
import java.time.Instant;
import java.time.ZoneId;
import java.time.ZonedDateTime;

public class Demo8 {public static void main(String[] args) {Instant instant = Instant.ofEpochMilli(0L);
        ZoneId zoneId = ZoneId.of("Asia/Shanghai");
        ZonedDateTime time2 = ZonedDateTime.ofInstant(instant, zoneId);
        ZonedDateTime time3 = time2.withYear(2000);
        System.out.println(time3);

        ZonedDateTime time4 = time3.minusYears(1);
        System.out.println(time4);

        ZonedDateTime time5 = time4.plusYears(1);
        System.out.println(time5);
    }
}

2000-01-01T08:00+08:00[Asia/Shanghai]
1999-01-01T08:00+08:00[Asia/Shanghai]
2000-01-01T08:00+08:00[Asia/Shanghai]

二、DateTimeFormatter
import java.time.Instant;
import java.time.ZoneId;
import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;
//獲取時間對象
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));

2023-01-14 23:55;55 星期六 下午

三、LocalDate 1. 獲取當(dāng)前時間的日歷對象(包含年月日)
//1.獲取當(dāng)前時間的日歷對象(包含 年月日)
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);
四、LocalTime 1.獲取本地時間的日歷對象(包含時分秒)
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);
2.is系列的方法
System.out.println(nowTime.isBefore(mTime));
System.out.println(nowTime.isAfter(mTime));
3.with系列的方法

這個系列的方法有局限性,只能修改時、分、秒

System.out.println(nowTime.withHour(10));
4.plus系列的方法

這個系列的方法有局限性,只能修改時、分、秒

System.out.println(nowTime.plusHours(10));
五、LocalDateTime 1.當(dāng)前時間的的日歷對象(包含年月日時分秒)
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());//納秒
2.獲取日:當(dāng)年的第幾天
System.out.println("dayofYear:" + nowDateTime.getDayOfYear());
3.獲取星期
System.out.println(nowDateTime.getDayOfWeek());
System.out.println(nowDateTime.getDayOfWeek().getValue());
4.獲取月份
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());
六、結(jié)語

還有一部分會在下一篇文章中講述

你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機房具備T級流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級服務(wù)器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧

分享標(biāo)題:JDK8時間相關(guān)類超詳細(xì)總結(jié)2(含多個實例)-創(chuàng)新互聯(lián)
鏈接地址:http://aaarwkj.com/article42/gdphc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)建站、建站公司、網(wǎng)站改版、品牌網(wǎng)站制作外貿(mào)建站、營銷型網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)公司
日本欧美激情在线观看| 免费观看黄片视频在线播放| 麻豆精品国产一区二区91| 国产老熟女高潮精品视频网站免费| 麻豆蜜桃精品视频在线观看| 色人阁在线精品免费视频| 日韩av有码在线播放| 青青草免费视频观看在线| 91免费视频精品麻豆| 久久精品一区二区三区乱码| 亚洲一区二区婷婷久久| 一级黄片一区二区三区| 日韩欧美中文字幕区| 一本久久精品午夜福利| 久久综合热这里只有精品| 亚洲av中文久久精品国内| 色综合亚洲一区二区小说| 有码精品视频在线观看| 国产真人免费作爱视频网站| 久久热精品视频这里有| 日韩中文字幕不卡免费| 久久中文字幕av一区| 人人妻人人澡人人爽老妇| 日韩有码一区在线观看| 国产成人亚洲一区二区三区| 啊啊舒服爽用力爱我视频| 一区二区三区艳情播放| 日本一区二区国产在线| 欧洲亚洲精品免费二区| 国产精品国产三级国av麻豆| 久久国产亚洲欧美一区| 国产亚洲欧美成人精品久久| 欧美在线观看日韩精品| 天天操夜夜骑日日干| 午夜香蕉av一区二区三区| 成年人性生活网站视频| 人人妻人人澡人人妻| 国产精品久久综合网| 国产精品情侣av自拍| 欧美日韩亚洲视频二区| 日本韩国三级视频在线观看|