Answers for "getting any date in java"

0

see date in java

import java.util.Date;

public class Main {
   public static void main(String[] args) {
    Date date = new Date(System.currentTimeMillis());
    System.out.println(date);
    }
}
Posted by: Guest on July-01-2021
1

what is T in the date in java

The T is just a literal to separate the date from the time, and the Z means "zero hour offset" also known as "Zulu time" (UTC). If your strings always have a "Z" you can use: SimpleDateFormat format = new SimpleDateFormat( "yyyy-MM-dd'T'HH:mm:ss. SSS'Z'", Locale.US); format. setTimeZone(TimeZone.07-Dec-2011
Posted by: Guest on June-07-2021

Code answers related to "getting any date in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language