久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

如何查看是否是周六/周日?

How to check if it#39;s Saturday/Sunday?(如何查看是否是周六/周日?)
本文介紹了如何查看是否是周六/周日?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

問題描述

限時送ChatGPT賬號..

這段代碼的作用是打印本周從星期一到星期五的日期.它工作得很好,但我想問點別的:如果今天是周六或周日,我希望它在下周顯示.我該怎么做?

What this code does is print the dates of the current week from Monday to Friday. It works fine, but I want to ask something else: If today is Saturday or Sunday I want it to show the next week. How do I do that?

這是我目前的工作代碼(感謝 StackOverflow!):

Here's my working code so far (thanks to StackOverflow!!):

// Get calendar set to current date and time
Calendar c = Calendar.getInstance();

// Set the calendar to monday of the current week
c.set(Calendar.DAY_OF_WEEK, Calendar.MONDAY);

// Print dates of the current week starting on Monday to Friday
DateFormat df = new SimpleDateFormat("EEE dd/MM/yyyy");
for (int i = 0; i <= 4; i++) {
    System.out.println(df.format(c.getTime()));
    c.add(Calendar.DATE, 1);
}

非常感謝!我真的很感激它,因為我已經尋找了幾個小時的解決方案......

Thanks a lot! I really appreciate it as I've been searching for the solution for hours...

推薦答案

public static void main(String[] args) {
    Calendar c = Calendar.getInstance();
    // Set the calendar to monday of the current week
    c.set(Calendar.DAY_OF_WEEK, Calendar.MONDAY);

    // Print dates of the current week starting on Monday to Friday
    DateFormat df = new SimpleDateFormat("EEE dd/MM/yyyy");
    for (int i = 0; i <= 10; i++) {
        System.out.println(df.format(c.getTime()));
        int dayOfWeek = c.get(Calendar.DAY_OF_WEEK);
        if (dayOfWeek == Calendar.FRIDAY) { // If it's Friday so skip to Monday
            c.add(Calendar.DATE, 3);
        } else if (dayOfWeek == Calendar.SATURDAY) { // If it's Saturday skip to Monday
            c.add(Calendar.DATE, 2);
        } else {
            c.add(Calendar.DATE, 1);
        }

        // As Cute as a ZuZu pet.
        //c.add(Calendar.DATE, dayOfWeek > Calendar.THURSDAY ? (9 - dayOfWeek) : 1);
    }
}

輸出

Mon 03/01/2011
Tue 04/01/2011
Wed 05/01/2011
Thu 06/01/2011
Fri 07/01/2011
Mon 10/01/2011
Tue 11/01/2011
Wed 12/01/2011
Thu 13/01/2011
Fri 14/01/2011
Mon 17/01/2011

如果你想變得可愛,可以將 if/then/else 替換為

If you want to be cute you can replace the if/then/else with

c.add(Calendar.DATE, dayOfWeek > 5 ? (9 - dayOfWeek) : 1);

但我真的想要一些易于理解和可讀的東西.

but I really wanted something easily understood and readable.

這篇關于如何查看是否是周六/周日?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

相關文檔推薦

Parsing an ISO 8601 string local date-time as if in UTC(解析 ISO 8601 字符串本地日期時間,就像在 UTC 中一樣)
How to convert Gregorian string to Gregorian Calendar?(如何將公歷字符串轉換為公歷?)
Java: What/where are the maximum and minimum values of a GregorianCalendar?(Java:GregorianCalendar 的最大值和最小值是什么/在哪里?)
Calendar to Date conversion for dates before 15 Oct 1582. Gregorian to Julian calendar switch(1582 年 10 月 15 日之前日期的日歷到日期轉換.公歷到儒略歷切換)
java Calendar setFirstDayOfWeek not working(java日歷setFirstDayOfWeek不起作用)
Java: getting current Day of the Week value(Java:獲取當前星期幾的值)
主站蜘蛛池模板: 久久亚 | 日本久久精品视频 | 欧美中文字幕在线 | 国产午夜精品一区二区三区嫩草 | 亚洲欧洲日韩精品 中文字幕 | 亚洲伊人久久综合 | 国产乱码精品一区二区三区忘忧草 | 三级av在线 | 亚洲国产精品一区二区第一页 | 欧美在线视频网站 | 欧美视频免费 | m豆传媒在线链接观看 | 日本精品一区 | 97视频在线免费 | 中文字幕高清av | 成人免费在线视频 | 欧美精品久久久久 | 在线视频 欧美日韩 | 国产一级精品毛片 | 精品国产欧美在线 | 成人精品一区二区三区中文字幕 | 亚洲永久免费观看 | 蜜臀网 | 国产精品一区二区三区在线播放 | 精品少妇一区二区三区在线播放 | 国产欧美三区 | 九九精品视频在线 | 亚洲精品乱码久久久久久按摩观 | 国产一区二区在线视频 | 91精品久久久久久久久 | 一区二区三区免费 | 欧美一级大片 | 久久综合狠狠综合久久综合88 | 国产精品人人做人人爽 | 亚洲精品一区二三区不卡 | 在线观看欧美一区 | 国产黄色在线观看 | 一区二区三区四区在线视频 | 日本精品久久久一区二区三区 | 成人一区二区视频 | 久久成人免费视频 |