java 什么方法可获取桌面的大小

来源:百度知道 编辑:UC知道 时间:2024/06/20 07:36:24
我想通过调用java中某一方法来获取当前桌面屏幕的长度和宽度,然后来确定新生成的窗口的位置.

Toolkit tk = this.getToolkit();
int width = 650;
int height = 550;
Dimension dm = tk.getScreenSize();

this.setLocation((int)(dm.getWidth()-width)/2,(int)(dm.getHeight()-height)/2);
以上是把位置设在中心...

网页可见区域宽:document.body.clientWidth
网页可见区域高:document.body.clientHeight
网页可见区域宽:document.body.offsetWidth (包括边线的宽)
网页可见区域高:document.body.offsetHeight (包括边线的宽)
网页正文全文宽:document.body.scrollWidth
网页正文全文高:document.body.scrollHeight
网页被卷去的高:document.body.scrollTop
网页被卷去的左:document.body.scrollLeft
网页正文部分上:window.screenTop
网页正文部分左:window.screenLeft
屏幕分辨率的高:window.screen.height
屏幕分辨率的宽:window.screen.width
屏幕可用工作区高度:window.screen.availHeight
屏幕可用工作区宽度:window.screen.availWidth

lanhawk说的对,以前写java时获取系统环境都用Toolkit tk = this.getToolkit();