Get the Screen Size in Java
Description
The following code shows how to get the Screen Size.
Example
//www. j a va2s . c o m
import java.awt.Dimension;
import java.awt.Toolkit;
public class Main {
public static void main(String[] argv) throws Exception {
Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
System.out.println(dim);
}
}
The code above generates the following result.