当前位置: 技术问答>java相关
如何在程序中控制鼠标自动移动到一个指定的位置?
来源: 互联网 发布时间:2015-04-26
本文导语: 如何在程序中控制鼠标自动移动到一个指定的位置? | 用Robot类,做这个问题很方便的 | private Robot mRobot = null; try { this.mRobot = new Robot(); } ca...
如何在程序中控制鼠标自动移动到一个指定的位置?
|
用Robot类,做这个问题很方便的
|
private Robot mRobot = null;
try
{
this.mRobot = new Robot();
}
catch(java.awt.AWTException awe)
{
System.err.println("new Robot error");
}
mRobot.mouseMove(150,150);//鼠标移动
try
{
this.mRobot = new Robot();
}
catch(java.awt.AWTException awe)
{
System.err.println("new Robot error");
}
mRobot.mouseMove(150,150);//鼠标移动
|
create your MouseEvent and then dispath it whenever & wherever you want, and you can catch it and do something you like if you override a window's processMouseEvent method.