国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Java > 正文

Java模擬QQ桌面截圖功能實現方法

2019-11-26 15:05:19
字體:
來源:轉載
供稿:網友

本文實例講述了Java模擬QQ桌面截圖功能實現方法。分享給大家供大家參考。具體如下:

QQ的桌面截圖功能非常方便,去年曾用Java模擬過一個,現整理出來。
本方法首先需要抓到屏幕的整個圖象,將圖象顯示在一個JFrame中,再將JFrame全屏顯示,這樣就模擬出了一個桌面,Java也就可以獲得鼠標的作用區域從而實現桌面中的小范圍截屏。

import javax.swing.*;import java.awt.*;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.awt.event.MouseAdapter;import java.awt.event.MouseEvent;import java.awt.event.MouseMotionListener;/** * 用Java模擬出QQ桌面截圖功能 */public class Test extends JFrame { private static final long serialVersionUID = -267804510087895906L; private JButton button = null; private JLabel imgLabel = null; public Test() { button = new JButton("模擬屏幕(點右鍵退出)"); button.addActionListener(new ActionListener() {  public void actionPerformed(ActionEvent e) {  try {   new ScreenWindow(imgLabel);  } catch (Exception e1) {   JOptionPane.showConfirmDialog(null, "出現意外錯誤!", "系統提示", JOptionPane.DEFAULT_OPTION, JOptionPane.ERROR_MESSAGE);  }  } }); JPanel pane = new JPanel(); pane.setBackground(Color.WHITE); imgLabel = new JLabel(); pane.add(imgLabel); JScrollPane spane = new JScrollPane(pane); this.getContentPane().add(button, BorderLayout.NORTH); this.getContentPane().add(spane); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setSize(300, 200); this.setLocationRelativeTo(null); this.setVisible(true); } public static void main(String[] args) { new Test(); }}class ScreenWindow extends JFrame { private static final long serialVersionUID = -3758062802950480258L; private boolean isDrag = false; private int x = 0; private int y = 0; private int xEnd = 0; private int yEnd = 0; public ScreenWindow(final JLabel imgLabel) throws AWTException, InterruptedException { Dimension screenDims = Toolkit.getDefaultToolkit().getScreenSize(); JLabel label = new JLabel(new ImageIcon(ScreenImage.getScreenImage(0, 0, screenDims.width, screenDims.height))); label.setCursor(new Cursor(Cursor.CROSSHAIR_CURSOR)); label.addMouseListener(new MouseAdapter() {  public void mouseClicked(MouseEvent e) {  if (e.getButton() == MouseEvent.BUTTON3) {   dispose();  }  }  public void mousePressed(MouseEvent e) {  x = e.getX();  y = e.getY();  }  public void mouseReleased(MouseEvent e) {  if (isDrag) {   xEnd = e.getX();   yEnd = e.getY();   if(x > xEnd){   int temp = x;   x = xEnd;   xEnd = temp;   }   if(y > yEnd){   int temp = y;   y = yEnd;   yEnd = temp;   }   try {   imgLabel.setIcon(new ImageIcon(ScreenImage.getScreenImage(x, y, xEnd - x, yEnd - y)));   } catch (Exception ex) {   JOptionPane.showConfirmDialog(null, "出現意外錯誤!", "系統提示", JOptionPane.DEFAULT_OPTION, JOptionPane.ERROR_MESSAGE);   }   dispose();  }  } }); label.addMouseMotionListener(new MouseMotionListener() {  public void mouseDragged(MouseEvent e) {  if(!isDrag)   isDrag = true;  }  public void mouseMoved(MouseEvent e) {  /** 拖動過程的虛線選取框需自己實現 */  } }); this.setUndecorated(true); this.getContentPane().add(label); this.setSize(screenDims.width, screenDims.height); this.setVisible(true); this.setExtendedState(JFrame.MAXIMIZED_BOTH); }}class ScreenImage { public static Image getScreenImage(int x, int y, int w, int h) throws AWTException, InterruptedException { Robot robot = new Robot(); Image screen = robot.createScreenCapture(new Rectangle(x, y, w, h)).getScaledInstance(w, h, Image.SCALE_SMOOTH); MediaTracker tracker = new MediaTracker(new Label()); tracker.addImage(screen, 1); tracker.waitForID(0); return screen; }}

希望本文所述對大家的java程序設計有所幫助。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 环江| 石河子市| 阿拉善右旗| 睢宁县| 荔浦县| 洛阳市| 收藏| 永寿县| 舟曲县| 施甸县| 凤阳县| 香河县| 光山县| 德安县| 化德县| 新河县| 临安市| 砚山县| 巴南区| 高邮市| 全椒县| 营口市| 长白| 南和县| 营口市| 常宁市| 临洮县| 云林县| 南陵县| 黎城县| 米泉市| 清水河县| 米泉市| 上杭县| 中卫市| 长治县| 高唐县| 竹北市| 澄迈县| 石林| 瑞金市|