w3resource

Java: Display the current date time in specific format

Java Basic: Exercise-47 with Solution

Write a Java program to display the current date and time in a specific format.

Pictorial Presentation:

Java: Display the current date time in specific format

Sample Solution:

Java Code:

 import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.TimeZone;

public class Exercise47 {

	public static void main(String args[]) {
		SimpleDateFormat cdt = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss.SSS");
		cdt.setCalendar(Calendar.getInstance(TimeZone.getTimeZone("GMT")));
		
		System.out.println("\nNow: "+cdt.format(System.currentTimeMillis()));
	}
}

Sample Output:

Now: 2017/06/16 08:52:03.066  

Flowchart :

Flowchart: Java exercises: Display the current date time in specific format

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to display the system time.
Next: Write a Java program to print the odd numbers from 1 to 99. Prints one number per line.

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.

Java: Tips of the Day

distinctValuesOfArray

Returns all the distinct values of an array.

Uses Arrays.stream().distinct() to discard all duplicated values.

public static int[] distinctValuesOfArray(int[] elements) {
    return Arrays.stream(elements).distinct().toArray();
}

Ref: https://bit.ly/3mn5ner

 





We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook