Java DisplayMode.getHeight()
Syntax
DisplayMode.getHeight() has the following syntax.
public int getHeight()
Example
In the following code shows how to use DisplayMode.getHeight() method.
//from ww w. j ava2s . co 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);
}
}
}
Home »
Java Tutorial »
java.awt »
Java Tutorial »
java.awt »