I would like to set my frame automatically to fullscreen. Is this possible, and if yes how?
Thanks
If you want to maximize your frame use:
frame.setExtendedState(Frame.MAXIMIZED_BOTH);
If you want the frame to have no decoration (truly fullscreen) use this aswell:
frame.setUndecorated(true);