Home Java Java-get-example Java get Screen Dimensions



Java get Screen Dimensions
Posted on: November 1, 2008 at 12:00 AM
In this section, you will learn how to obtain the height and width of the specific screen.

Java get Screen Dimensions

     

In this section, you will learn how to obtain the height and width of the specific screen.

The Toolkit class has a static method called getDefaultToolkit() and can be used to obtain the default Toolkit object for the user's system, which contains information about the user's specific machine. The method getScreenSize() return a Dimension object which contains the width and height of the screen.

 

 

 

Here is the source code of GetScreenSize.java

import java.awt.*;
public class GetScreenSize
{
  public static void main(String[] args){
  Toolkit toolkit =  Toolkit.getDefaultToolkit ();
  Dimension dim = toolkit.getScreenSize();
  System.out.println("Width of Screen Size is "+dim.width+" pixels");
  System.out.println("Height of Screen Size is "+dim.height+" pixels");
  }
}

Output will be displayed as:

Download Source Code

Related Tags for Java get Screen Dimensions:
cioscreenheightwidththisidaiiftolearncieareilsectionpeinspechowsspeeislleaandarspecificwidscrssthndono


More Tutorials from this section

Ask Questions?    Discuss: Java get Screen Dimensions  

Post your Comment


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

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.