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.*;
|
Output will be displayed as: