在有的平台上,仅仅设置全屏幕的大小,并不能保证全屏,任务栏会遮挡一部分。
办法一:
GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment(); GraphicsDevice gd = ge.getDefaultScreenDevice(); gd.setFullScreenWindow(jframe);
办法二,
jframe.getGraphicsConfiguration().getDevice().setFullScreenWindow(jframe);
注意在setVisible()/show()之前。