你可以有两种方法做全屏,
首先简单的就是
setSize(int x,int y)//x,y为你的屏幕的分辩率:1024,768或800,600
setUndecorated(true);
这样就是全屏的了
还有一种更为先进的和彻 底的
GraphicsEnvironment ge=
GraphicsEnvironment.getLocalGraphicsEnvironment();
GraphicsDevice gd=ge.getDefaultScreenDevice();
setUndecorated(true);
this.setIgnoreRepaint(true);
this.setResizable(false);
if(!gd.isFullScreenSupported()){
System.out.println("此显示器不支持全屏模式");
System.exit(1);
}
gd.setFullScreenWindow(this);
gd.setDisplayMode(new DisplayMode(800,600,16,60));//这可以自己重新设定全屏后的分辨率和色深,还有刷新率