Determine if full-screen mode is supported directly : Graphic Environment « 2D Graphics GUI « Java

Home
Java
1.2D Graphics GUI
2.2D Graphics GUI1
3.3D
4.Advanced Graphics
5.Ant
6.Apache Common
7.Chart
8.Class
9.Collections Data Structure
10.Data Type
11.Database SQL JDBC
12.Design Pattern
13.Development Class
14.EJB3
15.Email
16.Event
17.File Input Output
18.Game
19.Generics
20.GWT
21.Hibernate
22.I18N
23.J2EE
24.J2ME
25.JDK 6
26.JNDI LDAP
27.JPA
28.JSP
29.JSTL
30.Language Basics
31.Network Protocol
32.PDF RTF
33.Reflection
34.Regular Expressions
35.Scripting
36.Security
37.Servlets
38.Spring
39.Swing Components
40.Swing JFC
41.SWT JFace Eclipse
42.Threads
43.Tiny Application
44.Velocity
45.Web Services SOA
46.XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
SCJP
Java » 2D Graphics GUI » Graphic EnvironmentScreenshots 
Determine if full-screen mode is supported directly
  

import java.awt.BorderLayout;
import java.awt.Button;
import java.awt.Frame;
import java.awt.GraphicsDevice;
import java.awt.GraphicsEnvironment;
import java.awt.Window;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

public class Main {
  public static void main(String[] argvthrows Exception {
    GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
    GraphicsDevice gs = ge.getDefaultScreenDevice();
    if (gs.isFullScreenSupported()) {
      // Full-screen mode is supported
    else {
      // Full-screen mode will be simulated
    }
  }
}

   
    
  
Related examples in the same category
1.A quick utility to print out graphic device informationA quick utility to print out graphic device information
2.List all available fonts in the systemList all available fonts in the system
3.Show all fonts you have in your systemShow all fonts you have in your system
4.Leave full-screen mode (Return to normal windowed mode)
5.Enter full screen mode
6.Getting Screen Sizes
7.Getting Refresh Rates
8.Getting Number of Colors
9.Getting the Current Screen Refresh Rate and Number of Colors
10.Listing All Available Font Families
11.Getting the Font Faces for a Font Family
12.Create buffered images that are compatible with the screen
13.Create an image that does not support transparency from GraphicsConfiguration
14.Create an image that supports transparent pixels from GraphicsConfiguration
15.Getting Amount of Free Accelerated Image Memory
16.Get the available font family names
17.Get the available font names
18.Retrieve and print the graphic device information
19.Create an image that supports arbitrary levels of transparency from GraphicsConfiguration
20.Setting the Screen Size, Refresh Rate, or Number of Colors
21.If more than one screen is available, gets the size of each screen
22.Getting the Number of Screens
23.Get the GraphicsEnvironment and GraphicsDeviceGet the GraphicsEnvironment and GraphicsDevice
24.extends JComponent to exercise Graphics
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.