Answers for "Date.getTime in java"

1

how to get the time in java

// get current time in java using LocalTime.now() method 
import java.time.LocalTime;
public class UsingLocalDate
{
   public static void main(String[] args)
   {
      System.out.println(LocalTime.now());
     // hr : min : sec.fimto sec
   }
}
Posted by: Guest on June-01-2021
1

java getTime

String formatCode = "yyyy-MM-dd 'at' HH:mm:ss z"; // Example
SimpleDateFormat formatter = new SimpleDateFormat(formatCode); // Time Formatter
Date date = new Date(System.currentTimeMillis);

String time = formatter.format(date);
// e.g. time = 2021-04-15 at 11:11:11 UTC
Posted by: Guest on April-15-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language