Answers for "current time in seconds 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
0

java get current time in seconds

LocalDateTime date = LocalDateTime.now();
int seconds = date.toLocalTime().toSecondOfDay();
Posted by: Guest on September-02-2020
2

java how to get current time

import java.util.Calendar;
Date currentTime = Calendar.getInstance().getTime();
Posted by: Guest on November-08-2020

Code answers related to "current time in seconds java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language