Javatpoint Logo
Javatpoint Logo

Java SQL Date getHours() Method

The getHours() method of Java Date class returns the hour represented by this date. This method should not be used because SQL date values do not have the time component and this method is deprecated too. This method overrides getHours in class Date.

Syntax

Parameters

NA

Returns

It returns the hour represented by this date.

Exception

IllegalArgumentException - This exception will throw if this method is invoked.

Example

Test it Now

Output:

!! this output is shown by using java.util.Date as an alternate to deprecated method java.sql.Date 
Current time in hours = 16
!! this output is shown by using java.sql.Date and proves why this method is deprecated and we can't access time components in java.sql.Date class. 
Exception in thread "main" java.lang.IllegalArgumentException
	at java.sql/java.sql.Date.getHours(Unknown Source)
	at date.JavaDateExample1.main(JavaDateExample1.java:25)

Next TopicJava SQL Date





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA