Hai, my problem is ,I wish to display a frame/window as windows screen. i.e. the full size of the screen.How to get the size of the screen i.e. the monitor used.My window/frame should be displayed as full screen as windows Explorer.
ravindran shanmugam
Greenhorn
Joined: Aug 30, 2001
Posts: 15
posted
0
if your class extends JFrame,JWindow,Frame or any other container use Dimension d = getToolkit().getScreenSize(); otherwise , ([frameinstance]).getToolkit().getScreenSize(); u can also get the screenResolution using getToolkit().getScreenRevolution();
syed fazal faheem
Greenhorn
Joined: Jul 13, 2001
Posts: 12
posted
0
Hi, There is no need for ur application to extend any class to get the toolkit object. U can get the default toolkit kit by a static method getDefaultToolKit()in java.awt.Toolkit class. U can check ur screen size with the following piece of code: import java.awt.*; public class ScreenSize { public static void main(String str[]) { Dimension dim = (Toolkit.getDefaultToolkit()).getScreenSize(); System.out.println("Your screen size is... width: "+ dim.width +" ; height: "+dim.height); System.exit(0); } } Hope this solves ur problem. fazal.