Home > Java > JavaBase > body text

Calculate the day of the week for a specified date in java

王林
Release: 2019-11-20 14:28:20
Original
3816 people have browsed it

Calculate the day of the week for a specified date in java

First define an array of weeks. Because the array starts from 0, Sunday is put first, as shown in the figure:

Calculate the day of the week for a specified date in java

Get the Calendar object, and wait to operate the date and time, as shown in the figure:

Calculate the day of the week for a specified date in java

Set the passed in time into the Calendar object, as shown in the figure:

Calculate the day of the week for a specified date in java

Because the DAY_OF_WEEK of the running environment starts from Sunday, you need to subtract 1 here, as shown in the figure:

Calculate the day of the week for a specified date in java

After execution The result is returned, as shown in the figure:

Calculate the day of the week for a specified date in java

Write a test method to call the above completed method, as shown in the figure:

Calculate the day of the week for a specified date in java

Print The execution result is displayed and the day of the week is displayed, as shown in the figure:

Calculate the day of the week for a specified date in java

## Recommended tutorial:

Getting started with java development

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

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
Popular Tutorials
More>
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!