




已阅读5页,还剩2页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
Java中实现鼠标模拟与键盘映射关键字: java 鼠标模拟 键盘映射 Java SDK 1.3以后实现了Robot类。此类用于为测试自动化、自运行演示程序和其他需要控制鼠标和键盘的应用程序生成本机系统输入事件。Robot 的主要目的是便于 Java 平台实现自动测试。使用该类生成输入事件与将事件发送到 AWT 事件队列或 AWT 组件的区别在于:事件是在平台的本机输入队列中生成的。例如,Robot.mouseMove 将实际移动鼠标光标,而不是只生成鼠标移动事件。Robot中主要的鼠标和键盘控制方法有: void keyPress(int keycode) 按下给定的键。 void keyRelease(int keycode) 释放给定的键。 void mouseMove(int x, int y) 将鼠标指针移动到给定屏幕坐标。 void mousePress(int buttons) 按下一个或多个鼠标按钮。 void mouseRelease(int buttons) 释放一个或多个鼠标按钮。 void mouseWheel(int wheelAmt) 在配有滚轮的鼠标上旋转滚轮。下面就让我们来实战鼠标控制,实现一个简单的鼠标控制程序MouseController。程序功能很简单:随机移动鼠标并点击左键。代码如下:import java.awt.AWTException;import java.awt.Dimension;import java.awt.Robot;import java.awt.Toolkit;import java.awt.event.InputEvent;import java.util.Random;/* * * author Xiaofeng Wang */public class MouseController implements Runnable private Dimension dim;private Random rand; private Robot robot; private volatile boolean stop = false; /* Creates a new instance of Main */ public MouseController() dim = Toolkit.getDefaultToolkit().getScreenSize(); rand = new Random(); try robot = new Robot(); catch (AWTException ex) ex.printStackTrace(); public void run() while(!stop) int x = rand.nextInt(dim.width); int y = rand.nextInt(dim.height); robot.mouseMove(x, y); robot.mousePress(InputEvent.BUTTON1_MASK); try Thread.sleep(3000); catch (InterruptedException ex) ex.printStackTrace(); public synchronized void stop() stop = true; /* * param args the command line arguments */ public static void main(String args) MouseController mc = new MouseController(); Thread mcThread = new Thread(mc); System.out.println(Mouse Controller start); mcThread.start(); try Thread.sleep(60000); catch (InterruptedException ex) ex.printStackTrace(); mc.stop(); System.out.println(Mouse Controller stoped); 当然键盘映射也类似,无非是使用void keyPress(int keycode)。现 在实现了控制鼠标和键盘,接下了我们要获取操作后的效果(屏幕截图)。好在Robot类也提供了一个方法:BufferedImage createScreenCapture(Rectangle screenRect);可以直接将全屏幕或某个屏幕区域的像素拷贝到一个BufferedImage对象中。好,下面实战使用robot截屏,实现Capture程序,每隔秒截屏一次。代码如下:public class Capture extends javax.swing.JFrame implements Runnable /* Creates new form Capture */ public Capture() initComponents(); try robot = new Robot(); catch (AWTException ex) ex.printStackTrace(); dim = Toolkit.getDefaultToolkit().getScreenSize(); /* This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ / private void initComponents() screenCanvas = new java.awt.Canvas();setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); stop = true; setResizable(false);javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane(); getContentPane().setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(screenCanvas, javax.swing.GroupLayout.PREFERRED_SIZE, 519, javax.swing.GroupLayout.PREFERRED_SIZE) ); layout.setVerticalGroup( layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) .addComponent(screenCanvas, javax.swing.GroupLayout.PREFERRED_SIZE, 434, javax.swing.GroupLayout.PREFERRED_SIZE) ); pack (); / /* * param args the command line arguments */ public static void main(String args) final Capture capture = new Capture(); java.awt.EventQueue.invokeLater(new Runnable() public void run() capture.setVisible(true); ); Thread cutThread = new Thread(capture); cutThread.start(); public void run() stop = false; while(!stop) BufferedImage bImage = robot.createScreenCapture(new Rectangle(dim.width, dim.height); Graphics g = this.screenCanvas.getGraphics(); g.drawImage(bImage, 0, 0, this); try Thread.sleep(1000); catch (InterruptedException ex) ex.printS
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025年度离婚经济补偿协议:财产分配与子女抚养费计算细则
- 2025年度智能仓储物流服务及信息系统全面升级合作协议
- 2025年度综合物业管理信息系统升级与持续技术支持合同
- 2025年度财务会计专业就业培训及职业发展服务合同
- 2025型智能客服bot平台建设与运营合作协议
- 2025孕产妇专业保健服务合同范本-孕期母婴健康保障协议
- 2025年度购物中心顾客满意度提升与增值服务合同
- 2025年度绿色环保办公耗材个性化定制及批量销售合作协议
- 2025年企业员工社保一次性补偿协议范本与合规审查标准
- 2025年跨境电商数据分析及市场调研代理服务合同
- 锅炉安全技术规程标准(TSG 11-2020)
- 员工薪资调整审批表
- 中医妇科学:女性的生殖脏器
- 除锈剂MSDS参考资料
- 不等式及其基本性质说课课件
- 明渠均匀流计算公式
- 《纯物质热化学数据手册》
- 中国儿童严重过敏反应诊断与治疗建议(2022年)解读
- 电动力学-同济大学中国大学mooc课后章节答案期末考试题库2023年
- 放射科质控汇报
- 2023年山东威海乳山市事业单位招聘带编入伍高校毕业生12人笔试备考题库及答案解析
评论
0/150
提交评论