Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java DateTime, Calendar Exercises: 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.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe