DisplayMode.getHeight() has the following syntax.
public int getHeight()
In the following code shows how to use DisplayMode.getHeight() method.
//from w ww . java 2 s. c o m import java.awt.DisplayMode; import java.awt.GraphicsDevice; import java.awt.GraphicsEnvironment; public class Main { public static void main(String[] argv) throws Exception { GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment(); GraphicsDevice gs = ge.getDefaultScreenDevice(); DisplayMode[] dmodes = gs.getDisplayModes(); for (int i = 0; i < dmodes.length; i++) { int screenWidth = dmodes[i].getWidth(); int screenHeight = dmodes[i].getHeight(); System.out.println(screenWidth); System.out.println(screenHeight); } } }
The code above generates the following result.