Home> Java> JavaBase> body text

Two ways to get the day of the week of a date in java

Release: 2019-12-07 15:13:53
Original
5917 people have browsed it

Two ways to get the day of the week of a date in java

To get the day of the week for a specified date in java, you can use the following two methods to get the day of the week: (Recommended:java video tutorial)

1. Use the Calendar class

//根据日期取得星期几 public static String getWeek(Date date){ String[] weeks = {"星期日","星期一","星期二","星期三","星期四","星期五","星期六"}; Calendar cal = Calendar.getInstance(); cal.setTime(date); int week_index = cal.get(Calendar.DAY_OF_WEEK) - 1; if(week_index<0){ week_index = 0; } return weeks[week_index]; }
Copy after login

2. Use the SimpleDateFormat class

//根据日期取得星期几 public static String getWeek(Date date){ SimpleDateFormat sdf = new SimpleDateFormat("EEEE"); String week = sdf.format(date); return week; }
Copy after login

Note: The format string is case-sensitive

For creating SimpleDateFormat Incoming parameters: EEEE represents the week, such as "Thursday"; MMMM represents the Chinese month, such as "November"; MM represents the month, such as "11";

yyyy represents the year, such as "2010"; dd represents day, such as "25"

For more java knowledge, please pay attention to thejava basic tutorialcolumn.

The above is the detailed content of Two ways to get the day of the week of a date in java. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!