Home  >  Article  >  Java  >  Calculate the day of the week for a specified date in java

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

王林
王林Original
2019-11-20 14:28:203811browse

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!

Statement:
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