⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 screenres.java

📁 屏幕分辨率检测Java小程序
💻 JAVA
字号:
/* * ScreenRes.java - detects user's resolution * Author: Aaron Walker <aaron@iconmedia.com> * ScreenRes is distributed under the GNU General Public License. */import java.applet.Applet;import java.awt.*;public class ScreenRes extends Applet {    	int height;     	int width;  	public void init() {		setBackground(Color.white);		Dimension d = Toolkit.getDefaultToolkit().getScreenSize();     		height = d.height;    		width = d.width;	}	public void paint(Graphics g) {		String str = "Resolution: " + width + " x " + height;		Font f = new Font("Helvetica", Font.PLAIN, 12);		g.setFont(f);		g.drawString(str, 0, 15);	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -