Home Java Java-get-example Java get number of Processors
Questions:Ask|Latest



Java get number of Processors
Posted on: November 1, 2008 By Deepak Kumar
In this section, we are going to obtain the number of processors available in Java Virtual Machine.

Java get number of Processors

     

In this section, we are going to obtain the number of processors available in Java Virtual Machine.

To display the number of processors available to a current Java Virtual Machine, we have used the method availableProcessors() of class Runtime and the method getRuntime() returns the instance of Runtime class with the java application.

Here is the code GetProcessors.java

public class GetProcessors {
    
    public void displayAvailableProcessors() {
      Runtime runtime = Runtime.getRuntime();
      int numberOfProcessors = runtime.availableProcessors();
      System.out.println("Number of processors available to the Java Virtual Machine: " 
                 + numberOfProcessors);
      }
    public static void main(String[] args) {
    new GetProcessors().displayAvailableProcessors();
    }
}

Output will be displayed as:

Download Source Code


Recommend the tutorial

Ask Questions?    Discuss: Java get number of Processors  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 
Comments