Answers for "best way to handle time 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

Code answers related to "best way to handle time in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language