Java: Display current date without time and current time without date
40. Date Only and Time Only
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:
For more Practice: Solve these Related Problems:
- Write a Java program to extract and display only the date component from the current date-time.
- Write a Java program to display only the time component of the current date-time using formatting techniques.
- Write a Java program to obtain the current date and time, then print them separately without overlapping.
- Write a Java program to split the current date-time into two outputs: one for date and one for time.
Go to:
PREV : Convert Between Date and String.
NEXT : Combine Local Date and Time.
Java Code Editor:
Improve this sample solution and post your code through Disqus
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.