Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,895 questions

51,826 answers

573 users

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 95 views
1 answer 108 views
1 answer 118 views
2 answers 154 views
1 answer 117 views
2 answers 140 views
140 views asked Jun 28, 2024 by avibootz
2 answers 101 views
...