w3resource

Java: Display current date without time and current time without date

Java DateTime, Calendar: Exercise-40 with Solution

Write a Java program to display current date without time and current time without date.

Sample Solution:

Java Code:

import java.time.LocalDate;
import java.time.LocalTime;
import java.util.Date;

public class Main {

    public static void main(String[] args){        
        LocalDate l_date = LocalDate.now();        
        System.out.println("Current date: " + l_date);
        
        LocalTime l_time = LocalTime.now();        
        System.out.println("Current time: " + l_time);
    }
}

Sample Output:

Current date: 2019-11-16
Current time: 07:54:47.217

N.B.: The value may be changed accroding to your system date and time.

Flowchart:

Flowchart: Java DateTime, Calendar Exercises - Display current date without time and current time without date

Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a java program to convert String to date and time and vice a versa.
Next: Write a Java program to display combine local date and time in a single object.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.