ScreenSize.java
上传用户:njlgjx
上传日期:2022-08-07
资源大小:9105k
文件大小:1k
源码类别:

图形图象

开发平台:

Java

  1. package com.mwq.map.tool;
  2. import java.awt.Container;
  3. import java.awt.Dimension;
  4. import java.awt.Toolkit;
  5. public class ScreenSize {
  6.     private static int width;
  7.     private static int height;
  8.     
  9.     static {
  10.         Toolkit toolkit = Toolkit.getDefaultToolkit();
  11.         Dimension screenSize = toolkit.getScreenSize();
  12.         width = (int) screenSize.getWidth();
  13.         height = (int) screenSize.getHeight();
  14.     }
  15.     public static int getHeight() {
  16.         return height;
  17.     }
  18.     public static int getWidth() {
  19.         return width;
  20.     }
  21.     public static void centered(Container container) {
  22.         int w = container.getWidth();
  23.         int h = container.getHeight();
  24.         container.setBounds((width - w) / 2, (height - h) / 2, w, h);
  25.     }
  26. }