Ejemplo: javafx obtiene el tamaño de la pantalla
Rectangle2D screenBounds = Screen.getPrimary().getBounds();
System.out.println("Height: " + screenBounds.getHeight() + " Width: " + screenBounds.getWidth());
Output:
Height: 1440.0 Width: 2560.0
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)