Java convert string to date from format yyyy-mm-dd hh mm ss

Java convert string to date from format yyyy-mm-dd hh mm ss

Hi,

I have date in the string yyyy-mm-dd hh mm ss format. Now I will want this string date into the date format. How to convert string to date from format yyyy-mm-dd hh mm ss in a Java program?

Thanks

View Answers

July 21, 2017 at 4:05 AM

HI,

I will explain you the code to convert string date in format yyyy-mm-dd hh mm ss to date object. We need to define the string date format as shown below:

String pattern = "yyyy-mm-dd hh:mm:ss";

Then create the object of SimpleDateFormat using above defined pattern:

SimpleDateFormat simpleDateFormat = new SimpleDateFormat(pattern);

Finally parse date object with following code: date = simpleDateFormat.parse(dt);

Here is full example code of the program:

package net.roseindia;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

/*
 * Convert String from yyyy-mm-dd hh mm ss
 * to date object in Java
 */
public class StringToDateConversion {

    public static void main(String[] args) {

        String dt = "2017-05-08 10:05:55";
        String pattern = "yyyy-mm-dd hh:mm:ss";
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat(pattern);
        Date date = null;
        try {
            date = simpleDateFormat.parse(dt);
        } catch (ParseException e) {
            e.printStackTrace();
        }
        System.out.println("Date:" + date);

    }

}

Thanks


September 13, 2020 at 7:38 PM

HI,

Correct format is:

yyyy-MM-dd hh mm ss

Thanks


September 13, 2020 at 7:39 PM

Hi,

Here is output of correct program:

Thanks









Related Tutorials/Questions & Answers:
Java convert string to date from format yyyy-mm-dd hh mm ss
Java convert string to date from format yyyy-mm-dd hh mm ss  Hi, I...; /* * Convert String from yyyy-mm-dd hh mm ss * to date object in Java */ public... to convert string date in format yyyy-mm-dd hh mm ss to date object. We need
How to convert string to date in java in yyyy-mm-dd format?
How to convert string to date in java in yyyy-mm-dd format?  Hi, I have a date in yyyy-mm-dd format. How to convert string to date in java in yyyy... java.util.Date; /* * Example of formatting date in Java * from yyyy-mm-dd formaat
Advertisements
How to convert date to string in Java in yyyy-mm-dd format
to String in yyyy-mm-dd format. How to convert date to string in Java in yyyy...How to convert date to string in Java in yyyy-mm-dd format  Hi, I... it to yyyy-mm-dd String format. Here is Java example for converting String Date
convert yyyy-mm-dd hh mm ss to date in sql
convert yyyy-mm-dd hh mm ss to date in sql  Hi, How to convert yyyy-mm-dd hh mm ss to date in sql? Thanks   Hi, You should use following code in SQL DATE_FORMAT(STR_TO_DATE(my_date, "%Y/%m/%d %H:%i:%s.%f"), "%Y-%m
get current date in java in yyyy mm dd hh mm ss format
get current date in java in yyyy mm dd hh mm ss format  Hi, I want to get the current date into string yyyy mm dd hh mm ss format. How to get current date in java in yyyy mm dd hh mm ss format in a Java program? Thanks  
How to format current date into yyyy-mm-dd in Java
How to format current date into yyyy-mm-dd in Java  Hi, I have requirement to format the date into yyyy-MM-dd format for inserting it into MySQL...-dd"); formats the date into yyyy-MM-dd format. the MM is used for getting
how to format date from yyyy-mm-dd to dd-mm-yyyy
how to format date from yyyy-mm-dd to dd-mm-yyyy  <!DOCTYPE html... to calculate the nos. of days between two dates, the date format is in "yyyy-mm-dd", so what i want is in "dd-mm-yyyy" format. So, how to change it? I would be much
php date format yyyy-mm-dd
php date format yyyy-mm-dd  date format yyyy-mm-dd validation
c# current date in yyyy-MM-dd format
format. In c# how to get current date in yyyy-mm-dd format...(dateString ); Above code will give date into 2021-01-21 format (yyyy-MM-dd). I...c# current date in yyyy-MM-dd format  Hi, How to get the current
validationrule for date as format yyyy-mm-dd in drools
validationrule for date as format yyyy-mm-dd in drools  Please give... format yyyy-mm-dd: How i write the validation rule for date as a format yyyy-mm-dd...("outofServiceStartDate", "stmpOutOfServiceStartDateInvalid", "Please use the format yyyy-mm-dd
yyyy-mm-dd validation in javascript
yyyy-mm-dd validation in javascript   My form return value like (2011-10-05)yyyy-mm-dd ... my End date greater than my start date.. How to do validation in javascript
Mysql Date Expression
a format  'YYYY-MM-DD' and 'HH.MM.SS'. Timestamp columns are displayed... Mysql Date Expression       The Tutorial illustrate an example from 'Mysql Date Expression
How to calculate sum of HH:MM:SS Format?
How to calculate sum of HH:MM:SS Format?  how to calculate sum of HH:MM:SS? for example: 10:25:36+26:50:56 calculate sum of these values
Mysql Date Type
the 'emp_dob ' records in 'yyyy-mm-dd' format. select emp_dob from employee: The select query return the emp_dob  records in "yyyy-mm-dd" format...; Mysql Date Type is used to show the date in "yyyy-mm-dd" format.The
java format date
-MM-dd"); String formattedDate=sdf.format(date...java format date  Hi, How can I format the date in the following pattern? yyyy-MM-dd   import java.util.*; import java.text.*; class
String to Date format
SimpleDateFormat("yyyy-MM-dd"); String formattedDate=sdf.format(date...("yyyy-MM-dd"); String formattedDate=sdf.format(date...String to Date format  My Date format is String Eg(Jan 20 2011
Date prorblem
into string filed in java code. once the date is available in filed ( of type String ) in java code, then i have to convert it into yyyy-mm-dd hh-mm-ss. then i have...) SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); DATEADDED1
date format - Java Beginners
date format  How to convert yyyy-mm-dd to dd-mmm-yyyy  Hi friend, Code to convert yyyy-mm-dd to dd-mmm-yyyy : import java.util.Date...(); SimpleDateFormat formatter = new SimpleDateFormat("yyyy-mm-dd
Java Date conversion - Date Calendar
Java Date conversion  How do I convert 'Mon Mar 28 00:00:00 IST 1983' which is a java.util.Date or String to yyyy/MM/dd date format in sql
How to convert current date to dd mm yyyy format in Java?
How to convert current date to dd mm yyyy format in Java?  Hi, How to convert current date to dd mm yyyy format in Java? In my program I have... date into * dd-mm-yyyy format. You can also change the format * to convert
How to convert current date to mm dd yyyy format in Java?
How to convert current date to mm dd yyyy format in Java?  Hi, How to convert current date to mm dd yyyy format in Java? Share me the program... for converting current date into MM-dd-yyyy format. Here is full code: package
Simple date formatter example
the date object into the "yyyy-MM-dd HH:mm:ss" format. formatter = new... SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss... class to convert the date into the specified format. There are various constructors
calculate milliseconds to hh mm ss
calculate milliseconds to hh mm ss  how to calculate milliseconds to hh mm ss ? Actually i wanted to calculate week days and hours from milliseconds..?   var seconds = (mil / 1000) | 0; mil -= seconds * 1000; var
Get current Date and Time
_TO_REPLACE_1 DateFormat dateformat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss...[]) { DateFormat dateformat = new SimpleDateFormat("yyyy/MM/dd hh:mm:ss... SimpleDateFormat("yyyy/MM/dd hh:mm:ss"); Calendar cal = Calendar.getInstance
how to get date format in string from date object containing real date in java
-yyyy HH:mm:ss"); String datetext4=sdf4.format(date...how to get date format in string from date object containing real date in java  i want to get data string format from date object where date object
how to get date format in string from date object containing real date in java
-yyyy HH:mm:ss"); String datetext4=sdf4.format(date...how to get date format in string from date object containing real date in java  i want to get data string format from date object where date object
Convert Date to GMT
format is "yyyy-MM-dd HH:mm:ss" so, it takes you in this format...; SimpleDateFormat("yyyy-MM-dd HH:mm:ss");   ... Convert Date to GMT   
select date in desired format
select date in desired format  how to select date from the database in DD/MM/YYYY format, because if i am trying select data from the database i am getting value in yyyy/mm/dd and time format like below "2012-05-07 00:00:00.0
date format - JSP-Servlet
"; SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd"); Date dateStr...); System.out.println("yyyy-MM-dd date is ==>"+formattedDate); Date...); System.out.println("dd-MMM-yyyy date is ==>"+formattedDate); } } Thanks
Java SimpleDateFormat Example
SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); Date date = dt.parse(stringDate); SimpleDateFormat dt1 = new SimpleDateFormat("yyyy-MM-dd... class where we will specified a date format as a String and then we will format
ask java - Date Calendar
(); SimpleDateFormat sdf; //sdf = new SimpleDateFormat("dd/MMM/yyyy hh:mm:ss aa"); sdf = new SimpleDateFormat("yyyy/MM/dd"); System.out.println("date " + sdf.format(date)); //string containing date in one format String strDate1
JDBC : Current Date
the current date and time as a value in 'YYYY-MM-DD HH:MM:SS' SYSDATE()  : It returns the current date and time as a value in 'YYYY-MM-DD HH:MM:SS..., CURRENT_DATE() functions  return the current date in format 'YYYY-MM-DD
String to date with no format
date format can be (mm-dd-yyyy) if the 99th record also was 06-06-2006 the result should be date format can be (mm-dd-yyyy;dd-mm-yyyy) can sum1 please help me...String to date with no format  Hii.. I want to convert a string
Validating date in javascript - Java Interview Questions
; In what format you are going to enter the date in Text box (i.e : dd/mm/yyyy or mm/dd/yyyy or yyyy/mm/dd...Validating date in javascript   Hi Deepak, Can u give
Java - Java Interview Questions
Scanner(System.in); SimpleDateFormat format = new SimpleDateFormat("dd-MM-yyyy... = new SimpleDateFormat("yyyy-MM-dd"); System.out.println(sdf.format(date...Java  1)Write a program in java to take input date from the user
How to convert date to UTC format in Java?
How to convert date to UTC format in Java?  Hi, What is UTC Date format and How to convert date to UTC format in Java? I need simple to learn... of world. You can use Java program to convert the date in UTC String
Convert String to Date
  initialize a string .We are creating format type "hh:mm:ss"... Convert String to Date       In this example we are going to convert string into date We
java program
Millisecond is: ","Current full date time is: "}; String formats[]={"yyyy","MM","dd","HH","k","mm","ss","SS","MM-dd-yyyy k:mm:ss.SS"}; for(int i=0...java program  write a java program to get current date and time
Convert String into date
convert a string into Date format. It also provide some of the methods like.... SimpleDateFormat take string as input an convert that string into Date format. Here... in java. Example:  Code to convert String to Date in java. import
How to get today's date in java in mm/dd/yyyy format?
Today's Date in MM/dd/yyyy format in Java - How to get today's date... examples of getting the current date in Java in MM/dd/yyyy format. Here MM... and then format it into MM/dd/yyyy format. Java comes with rich date API which can
How to convert date to string in Java?
How to convert date to string in Java?  Hello developers, I have java.util.Date object and it has to be converted to date format. How to convert date to string in Java? Thanks   Hi, To convert java.util.Date object
java program 18
[]={"yyyy","MM","dd","HH","k","mm","ss","SS","MM-dd-yyyy k:mm:ss.SS"}; for(int...java program 18  write a java program to get current date and time in the following format: current year is:2007 current month is:12 current date
How to get of lastmodified file list between two times in java?
SimpleDateFormat("yyyy-MM-dd hh:mm:ss a"); } public boolean accept(File dir, String name... = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss a"); FileFilterDateIntervalUtils...-dd"); } public boolean accept(File dir, String name) { Date d = new
java.text.ParseException: Unparseable date - JSP-Servlet
-mm-dd HH:mm:ss"); formattedDate = formatter.format(fmtDate); Thanks...*; import java.text.*; String strformat="dd-MM-yyy"; SimpleDateFormat formatter... me ! .. in my project generated servlet from jsp .. is throwing an exception
convert current date into date format
convert current date into date format  How to get current date and convert into date format in Java or PHP
How to Convert String to Date?
How to Convert String to Date?  Hi, I am new in Java and learning... have to convert it to Date object. Tell me How to Convert String to Date? Thanks   Hi Dude, Its very easy to convert the String into date format
Change Date Format - Development process
Change Date Format  Hi, While retrieving data frm database, date format displayed as yyyy/mm/dd but i want to display as dd/mm/yyyy. I have tried parse,format functions but not getting output. can u send me code
Java Date Format Example
MMM yyyy HH mm ss Z"); Date date = new Date(); String newDateString... SimpleDateFormat("E dd MMM yyyy HH mm ss Z"); String newDateString... SimpleDateFormat("E dd MMM yy HH mm ss Z", Locale.FRENCH); String franchDateString
Struts 2 Date Format Examples
; <tr> <td>Date in (MM/dd/yyyy hh:mm AM/PM) Format:</td>...;tr> <td>Date in (dd-MMM-yyyy hh:mm AM/PM) Format:</td>...; <td>Date in (dd/MM/yyyy hh:mm) Format:</td> <td>
String to Date Conversion - Java Beginners
SimpleDateFormat("dd/MMM/yyyy hh:mm:ss aa"); System.out.println(sdf.format(date...(sourcefiletimeStamp); SimpleDateFormat sdf = new SimpleDateFormat("dd-mm-yyyy hh:mm:ss:aa.... Hence I need some help for converting my String Date format to Date format, so

Ads