java实现人工智能化屏幕监控窗口

时间:2021-05-19

本文实例为大家分享了java实现人工智能化屏幕监控窗口的具体代码,供大家参考,具体内容如下

具体代码实现(含注释)

public class Main{ public static void main(String[] args) throws Exception{ } /** *用于实时监控屏幕的窗口 *@author chengxi *@param void *@return void */ public static void mvcontroll() throws Exception{ JFrame frame = new JFrame("人工智能化屏幕监控系统") ; frame.setSize(600,600) ; frame.setVisible(true) ; frame.setAlwaysOnTop(true) ; Toolkit tk = Toolkit.getDefaultToolkit() ; Dimension dm = tk.getScreenSize() ; JLabel imageLabel = new JLabel() ; frame.add(imageLabel) ; Robot robot = new Robot() ; while(true) { /* 创建用于显示屏幕分享部分的区域,填入x/y/width/height Rectangle rec = new Rectangle(frame.getWidth() , 0 , (int)dm.getWidth() - frame.getWidth() , (int)dm.getHeight()) ; BufferedImage bufimg = robot.createScreenCapture(rec)) ; imageLabel.setIcon(new ImageIcon(bufimg)) ; } } /** *打开指定的路径 public static void midopenQQ(String path) throws Exception{ Desktop desktop = Desktop.getDesktop() ; desktop.open(new File(path)) ; Robot robot = new Robot() ; robot.delay(2000) ; robot.mouseMove(709,519) ; robot.mousePress(InputEvent.BUTTON1_DOWN_MASK) ; robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK) ; robot.delay(300) ; } /** *简单的打开path指定的路径所在的应用程序 *@author chengxi *@param String path *@return void */ public static void easyopenQQ(String path) throws Exception{ Desktop desktop = Desktop.getDesktop() ; desktop.open(new File(path)) ; } /** *打开uri指定的网址 *@author chengxi *@param String uri *@return void */ public static void openBrowse(String uri) throws Exception{ Desktop desktop = Desktop.getDesktop() ; desktop.browse(new URI("http://")) ; }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章