×

Java.sql.Time Format

In JDBC API as a cover aroundjava.util.Date that handles SQL-specific requirements we use the java.sql.Time. The java.sql.Time extends java.util.Date class. To represent SQL TIME, without a date this class is used. This class is similar to the java.sql.Date and it is used only when working with databases in java.

  • Formatting and parsing operations are added for supporting the JDBC escape syntax for time values.

Class Hierarchy

java.lang.Object
   |
   +----java.util.Date
           |
           +----java.sql.Time

All implemented interfaces:

Serializable, Cloneable, Comparable<Date>

In the SQL package, the time class is used to display the time valuejava.sql.Time we can display time without a date. Whereas java.sql.date is used for displaying date,without time. For both date and time, we use java.sql.Timestamp. Here java.sql.Date and java.sql.Time is the subclass of java.util.Date. java.sql.Date and java.sql.Time both inherit from java.util.Date.

  • The time value is initially set to 1st January 1970. The time value after that is positive and the time value before that is negative.

Constructor and Methods in java.sql.Time

Here are some of the constructors and methods in java.sql.Time class.

1. java.sql.Time Constructors:

  • Time(int,int,int) – Used for Constructing a Time Object. 
    public Time(int hour, int minute, int second)
    Parameters:hour(0-23),minute(0-59),second(0-59)
  • Time(long)–  Using a milliseconds time value it constructs a Time.
    public Time(long time)
    Parameters:time represented in milliseconds that from since January 1, 1970, 00:00:00 GMT

Program :Time(long)

import java.sql.Time;
public class SqlTimeExample{
public static void main(String[] args){
long current = System.currentTimeMillis();
Time time= new Time(current);
System.out.println("SqlTime: " + time);
}
}

Output:

SqlTime : 20:54:42

2. java.sql.Timemethods

  • setTime(long time):  In this method using a milliseconds time value seta Time object.
public void setTime(long time)

Parameters:  time 

Since January 1, 1970, 00:00:00 GMTrepresenteda timein milliseconds.

  • valueOf(String s):  Convert theJDBC time escape format into a Time value in this method.
public static Time valueOf(String s)

Parameters:  string s

 The timeis represented in the format “hh:mm:ss”.It returns the corresponding Time object.

  • toString(): this method formats the time in JDBC time escape format.
public String toString()

In this method, it has no parameters and it returns a String in hh:mm:ss format.

  • toInstant(): UnsupportedOperationException is thrown by this method and it is not used because no date component in SQL Time values.
public Instant toInstant()
  • toLocalTime(): In this method time object is converted to local time.
Public LocalTime toLocalTime()

In this method,thehour,minute, andsecond time valuesrepresented the same as in the Time object are represented.

Program: This program uses all the above-mentioned methods

import java.sql.*;
import java.time.LocalTime;
import java.time.Instant;
class SqlTimeExample2 {
public static void main(String args[]){
long milli = System.currentTimeMillis();
java.sql.Time time = new java.sql.Time(milli);
// display the time
System.out.println("old Time = " + time.toString());
// using setTime() method
long milli2 = 456732895489l;
time.setTime(milli2);
// using toString() method
System.out.println("New Time = " + time.toString());
// using valueOf() method
System.out.println("Value of 00:05:29 ="+ Time.valueOf("00:08:53"));
// using toLocalTime() method
System.out.println("localtime = " +time.toLocalTime());
// using toInstant() method
System.out.println("Instant= " +time.toInstant());
}
}

Output:

old Time = 23:08:08
New Time = 11:44:55
Value of 00:05:29 =00:08:53
localtime = 11:44:55
Exception in thread "main" java.lang.UnsupportedOperationException
        at java.sql/java.sql.Time.toInstant(Time.java:281)
        at SqlTimeExample2.main(SqlTimeExample2.java:33)

Date and Time Format

The date and time functionality of java for displaying or utilizing we mostly use two classes they are:

  • DateFormat
  • SimpleDateFormat

java.text package these two classes are present.we use these two classes mostly in date and time formatting (converting date to string) and parsing (converting string to date).

The time is represented in different formats like AM/PM, 12 hrs,24 hrs, etc.

DateFormat:

The DateFormat is an abstract class used for formatting date/time subclasses. The time is represented as the time object and the date is represented as the date object as the millisecond since January 1,1970,00:00:00 GMT.

  • By default, many class methods are provided by the DateFormat for obtaining date/time formatter based on default or given locale and number of formatting styles.
  • SHORT, MEDIUM,LONG,and FULL are included in the formatting style.
  • For Format classit is the subclass. For formatting date, to date/time string we use the format(). This method is used for converting a given date/time into a particular format.
  • By using the method getTimeInstance() of DateFormat class we can create DateFormat object.
  • we need an instance of time for performing a time format, so for getting an instance of time we will be using the getTimeInstance() method.

Class hierarchy:

java.lang.Object

java.text.Format

java.text.DateFormat

Subclasses:   SimpleDateFormat

Program:

import java.text.DateFormat;
import java.util.Date;
public class Test {
public static void main(String[] args) {
DateFormat dateFormat = DateFormat.getTimeInstance(DateFormat.DEFAULT);
System.out.println(dateFormat.format(new Date()));
dateFormat = DateFormat.getTimeInstance(DateFormat.SHORT);
System.out.println(dateFormat.format(new Date()));
dateFormat = DateFormat.getTimeInstance(DateFormat.MEDIUM);
System.out.println(dateFormat.format(new Date()));
dateFormat = DateFormat.getTimeInstance(DateFormat.LONG);
System.out.println(dateFormat.format(new Date()));
dateFormat = DateFormat.getTimeInstance(DateFormat.FULL);
System.out.println(dateFormat.format(new Date()));
}
}

Output:

1:26:33 pm
1:26 pm
1:26:33 pm
1:26:33 pm IST
1:26:33 pm India Standard Time

SimpleDateFormat:

It is similar to the DateFormat. But in the SimpleDateFormat has locale support for formatting and parsing but in DateFormat there is no locale support. It is a concrete class anditextends DateFormat class.

SimpleDateFormatConstructors:

  • SimpleDateFormat(String pattern_args)
  • SimpleDateFormat(String pattern_args, Locale locale_args)
  • SimpleDateFormat(String pattern_args, DateFormatSymbolsformatSymbols)

Class hierarchy:

java.lang.Object

java.text.Format

java.text.DateFormat

java.text.SimpleDateFormat

  • We can create SimpleDateFormat by Using the SimpleDateFormat constructor, and it is  parametrized constructor and the parameter arestring pattern.
  • Date and time pattern strings are used to specify the Date and time formats. The pattern letters are‘A” to 'Z' and from 'a' to 'z' for representing the components of a date or time string.
  • To avoid interpretationusing single quotes (')Text can be quoted and all other characters are simply copied to the output string.
LetterTime ComponentExamples
aAm/pm markerPM
HAn hour in a day (0-23)0
kAn hour in a day (1-24)24
KAn hour in am/pm (0-11)0
hAn hour in am/pm (1-12)12
mMinute in hour30
sSecond in minute55
SMillisecond978
zTime zonePacific Standard TimePSTGMT-08:00
ZTime zone-0800

Some Example programs for time format:

  • Using SimpleDateFormat format the time in AM-PM format:

Program:

import java.text.SimpleDateFormat;
import java.util.Date;
public class Javatpoint{
public static void main(String[] args){
Date date = new Date();
String strDateFormat = "HH:mm:ss a";
SimpleDateFormat sdf = new SimpleDateFormat(strDateFormat);
System.out.println(sdf.format(date));
}
}

Output:

18:36:14 pm
  • Using SimpleDateFormat format the time in 24hrs format:

Program:

import java.text.SimpleDateFormat;
import java.util.Date;
public class Javatpoint {
public static void main(String[] args) throws Exception {
Date d = new Date();
SimpleDateFormat simpDate;
simpDate = nargsimpleDateFormat("kk:mm:ss");
System.out.println(simpDate.format(d));
}
}

Output:

19:39:24
  • Using SimpleDateFormat format the time in MMMM format:

Program:

import java.text.SimpleDateFormat;
import java.util.Date;
public class Javatpoint{
public static void main(String[] args) {
Date date = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("MMMM");
System.out.println("Current Month in MMMM format: " + sdf.format(date));
}
}

Output:

Current Month in MMMM format: August
  • Using SimpleDateFormat format the time in 12hrs format:

Program:

import java.text.SimpleDateFormat;
import java.util.Date;
public class Javatpoint {
public static void main(String[] args) throws Exception {
Date d = new Date();
SimpleDateFormat simpDate;
simpDate = nargsimpleDateFormat("KK:mm:ss");
System.out.println(simpDate.format(d));
}
}

Output:

07:43:11

Related Topics

Find the Frequency of Each Element in the Array in Java

We may count the occurrence of each element in the array of items. Maintaining one array to store the counts of each array element is one strategy for solving this issue....

3 minutes read.

Java Array Generic

Creating Generic Array in Java A collection of comparable sorts of data is kept in an array. In Java, making a generic array is challenging. The type information of an array's...

4 minutes read.

Java Binary to Hexadecimal

Converting between types in programming is an important task. Moving from one kind to another kind conversion is occasionally necessary. We have discussed numerous conversion types in the section on...

3 minutes read.

Compile-time Error in Java

In java, the execution of a program is stopped due to the occurrence of some problem known as an error. Errors are illegal operations that are carried out by the...

4 minutes read.

Creating a Custom Generic Class in Java

To indicate parameter types when creating generic classes, we utilize the <> symbol. The syntax used to generate objects of a generic class is as follows. // To create an instance...

4 minutes read.

Segment Tree in Java

Binary trees can address a variety of issues; however, the Segment Tree is more efficient in terms of time complexity. The segment tree in Java is represented using an array. Native...

4 minutes read.

Intersection Point of two linked list in Java

In this article, you will be very well acknowledged about how to achieve the intersection point of two linked list in Java. There are several approaches to obtain. Surely each...

8 minutes read.

How to add Elements in Array in Java

Consider an array of the size n, in the given size we must add the elements in the given array. In this tutorial we are preferred to learn how to add...

3 minutes read.

Java Database Connectivity with MySQL

In this tutorial, we will learn how to connect Database with MySQL in Java. 5 Steps to Connect to the Database in Java Load the driver (or) Register the driver classEstablish a...

4 minutes read.

Array Slicing in Java

Array slicing is a method in Java for obtaining a subarray of a specified array. Assume a[] is an array. It contains eight items indexed from a[0] to a[7].a[] =...

3 minutes read.

How to add double quotes in a string in Java

Strings are indicated using double-quotes. Double quotes are not printed; the values inside the double quotes are printed. There are different methods for adding double quotes to the string, such...

2 minutes read.

Java Math ulp() Method

The ulp() method of Java Math class returns the size of an ulp of the argument. Syntax: public static double ulp(double x)public static float ulp(float x) Parameters: The parameter ‘x’ represents the floating-point number...

2 minutes read.

Java Command Line Arguments

Java command line arguments Command line argument is an input or argument to the program when you run the program. In Java, we can take the inputs from the console, and...

2 minutes read.

C# vs Java

Difference Between C# and Java C# and Java both languagesare popularly used programming languages. They both are derived from C/C++ programming and follow Object Oriented Programming approach. Even so, both these...

4 minutes read.

Hierarchy of operators in Java

Operators are the most frequently used terminology in any area of programming, and it helps in various approaches to efficiently solve daily life problems by computer programming. The simple addition of...

4 minutes read.

Jdoodle Java

Everything is instantaneous and fast-paced in the modern world. Online compilers available via the internet are immensely helpful for programmers seeking to learn a new programming language but lacking the...

4 minutes read.

Difference Between replace() and replaceall() in Java

In this article, you will be acknowledged about the replace() and replaceall() methods in java. Also, most importantly you will be acknowledged the differences between them along with the example...

4 minutes read.

Beautiful Array in Java

In this section, we will be acknowledged about the beautiful array in Java, its characteristics, how it is achieved. What are the types of approaches and what are the tools...

8 minutes read.

Java String join() method

Java String join() method returns a joined String with given delimiter Syntax: public static String join(CharSequence delimeter,charSequence...elements) public static String join(CharSequence delimeter,Iterable<?extens charSequence>elements) Parameters: delimiter: char value to be added with each element elements: char value...

1 minute read.

Java Boolean toValue() Method

The valueOf() method of Java Boolean class returns a Boolean object representing the given Boolean or String value. It returns true, if the specified Boolean or string object is true...

2 minutes read.