GraphicsEnvironment: getScreenDevices() : GraphicsEnvironment « java.awt « Java by API






GraphicsEnvironment: getScreenDevices()

import java.awt.GraphicsDevice;
import java.awt.GraphicsEnvironment;

public class MainClass {

  public static void main(String[] a) throws Exception {
    GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
    GraphicsDevice[] screenDevices = ge.getScreenDevices();
    for (int i = 0; i < screenDevices.length; i++)
      System.out.println(screenDevices[i].getIDstring());
  }
}


           
       








Related examples in the same category

1.GraphicsEnvironment: getAllFonts()
2.GraphicsEnvironment: getAvailableFontFamilyNames()
3.GraphicsEnvironment: getCenterPoint()
4.GraphicsEnvironment: getDefaultScreenDevice()
5.GraphicsEnvironment: getLocalGraphicsEnvironment()