How to measure time in milliseconds using Java

2 Answers

0 votes
public class TimeInMilliseconds {
    public static void main(String args[]) {
            long startTime = System.currentTimeMillis();
            
            for (int i = 0; i < 2000000; i++);
            
            long estimatedTime = System.currentTimeMillis() - startTime;
            
            System.out.println(estimatedTime);
    }
}

 
/*
run:
   
2
  
*/

 



answered May 31, 2018 by avibootz
edited Jun 28, 2024 by avibootz
0 votes
public class TimeInMilliseconds {
    public static void main(String args[]) {
        try {            
            long startTime = System.currentTimeMillis();
            
            //  public static void sleep(long millis)throws InterruptedException
            Thread.sleep(1000);
            
            long estimatedTime = System.currentTimeMillis() - startTime;
            
            System.out.println(estimatedTime);
        } catch (InterruptedException ie) {
                System.out.println("Thread error: " + ie);
        }
    }
}

 
/*
run:
   
1000
  
*/

 



answered Jun 28, 2024 by avibootz

Related questions

1 answer 117 views
1 answer 151 views
1 answer 150 views
2 answers 190 views
1 answer 145 views
2 answers 167 views
167 views asked Jun 28, 2024 by avibootz
2 answers 130 views
...