Answers for "java current time in ms"

3

java get current milliseconds

package com.tutorialspoint;

import java.lang.*;

public class SystemDemo {

   public static void main(String[] args) {

      // returns the current time in milliseconds
      System.out.print("Current Time in milliseconds = ");
      System.out.println(System.currentTimeMillis());
   }
}
Posted by: Guest on June-20-2020
2

how to format a datetime object to show date and time and milliseconds in java

public String getCurrentTimeStamp() {
    return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS").format(new Date());
}
Posted by: Guest on June-16-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language