1 2 3 4 5 6 7 8 9 10 11 12 |
import java.awt.Robot; import java.awt.event.InputEvent; import java.awt.*; public class Robots { public static void main(String[] args) throws Exception { GraphicsDevice gd = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice(); System.out.println("(" + gd.getDisplayMode().getWidth() + " x " + gd.getDisplayMode().getHeight() + ")"); } } |