Is there an error in this Java book? or am I missi

2019-02-28 00:54发布

The following code is written the exact same way as in a Java book I am reading

package main;

 import java.awt.Color;
 import java.awt.DisplayMode;
 import java.awt.Font;
 import java.awt.Graphics;
 import java.awt.Graphics2D;
 import java.awt.RenderingHints;

 import javax.swing.JFrame;

 public class FullScreenTest extends JFrame {
public static void main(String[] args) {
    DisplayMode displayMode;
    if (args.length == 3) {
        displayMode = new DisplayMode(Integer.parseInt(args[0]),
                Integer.parseInt(args[1]),        Integer.parseInt(args[2]),
                DisplayMode.REFRESH_RATE_UNKNOWN);

    } else {
        displayMode = new DisplayMode(800, 600, 16,
                DisplayMode.REFRESH_RATE_UNKNOWN);
    }
    FullScreenTest test = new FullScreenTest();
    test.run(displayMode);
}

private static final long DEMO_TIME = 1000;

public void run(DisplayMode displayMode) {
    setBackground(Color.blue);
    setForeground(Color.white);
    setFont(new Font("Dialog", Font.PLAIN, 24));

    SimpleScreenManager screen = new SimpleScreenManager();
    try {
        screen.setFullScreen(displayMode, this);
        try {
            Thread.sleep(DEMO_TIME);
        } catch (Exception e) {
        }

    } finally {
        screen.restoreScreen();
    }
}

public void paint(Graphics g) {

    g.drawString("Hello World!", 20, 50);
}
 }

When I run this, I get a black screen for 5 seconds, and that's it.

However when I change the following line:

displayMode = new DisplayMode(800, 600, 16, DisplayMode.REFRESH_RATE_UNKNOWN);

to this:

 displayMode = new DisplayMode(600, 800, 16, DisplayMode.REFRESH_RATE_UNKNOWN);

it works perfectly.

Why is this happening? I don't quite understand.

Thanks,

-Steve


 package main;

 import java.awt.DisplayMode;
 import java.awt.GraphicsDevice;
 import java.awt.GraphicsEnvironment;
 import java.awt.Window;

 import javax.swing.JFrame;

 public class SimpleScreenManager {

private GraphicsDevice device;

public SimpleScreenManager() {
    GraphicsEnvironment environment = GraphicsEnvironment
            .getLocalGraphicsEnvironment();
    device = environment.getDefaultScreenDevice();
}

public void setFullScreen(DisplayMode displayMode, JFrame window) {
    window.setUndecorated(true);
    window.setResizable(false);

    device.setFullScreenWindow(window);

    if (displayMode != null && device.isDisplayChangeSupported()) {

        try {
            device.setDisplayMode(displayMode);
        } catch (Exception e) {

        }

    }
}

public Window getFullScreenWindow() {
    return device.getFullScreenWindow();
}

public void restoreScreen() {
    Window window = device.getFullScreenWindow();
    if (window != null) {
        window.dispose();
    }
    device.setFullScreenWindow(null);
}
 }

1条回答
再贱就再见
2楼-- · 2019-02-28 01:28

DisplayMode has to do with Java "Full Screen Exclusive Mode" functions, which are documented here:

I would encourage you to try some of the sample programs here:

The bottom line is:

1) not all OS's or display devices are necessarily supported by this API

2) All combinations of arbitrary DisplayMode settings aren't necessarily supported if the device itself doesn't support them

查看更多
登录 后发表回答