w3resource

Java: Extract date, time from the date string

Java DateTime, Calendar: Exercise-35 with Solution

Write a Java program to extract date and time from the date string.

Sample Solution:

Java Code:

import java.util.*;
import java.text.*;

public class Exercise35 {
  public static void main(String[] args)
   {
    try {    
      String originalString = "2016-07-14 09:00:02";
      Date date = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse(originalString);
      String newstr = new SimpleDateFormat("MM/dd/yyyy, H:mm:ss").format(date);
       System.out.println("\n"+newstr+"\n");
      } 
    catch (ParseException e) {
    //Handle exception here
     e.printStackTrace();
     }
    }
}

Sample Output:

07/14/2016, 9:00:02

Pictorial Presentation:

Java Exercises: Java DateTime, Calendar Exercises - Extract date, time from the date string.

Flowchart:

Flowchart: Java DateTime, Calendar Exercises - Extract date, time from the date string

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to get today's date at midnight time.
Next: Write a Java program to convert a unix timestamp to date in Java.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/java-exercises/datetime/java-datetime-exercise-35.php