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

|