Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我们远程(远程方法调用应用程序)使用其 IP 无限期设置任何其他系统的鼠标坐标,那么控制权将无限期保留在那里,我们的应用程序将挂起,直到该系统的服务器崩溃。
是否有任何解决方案,可以无限期锁定远程系统的鼠标并将控制权返回到根系统 - 使用远程方法调用(Java)?
try{Robot r = new Robot(); while(true){ r.mouseMove(0,0); } }catch(Exception e){ }
当然你的系统会挂起,如果不是很意外,首先通过 mouseMove(0,0) 设置鼠标位置,然后你需要添加鼠标钩子监听器,再次将鼠标光标移到 0,0 (NOT IN WHILE LOOP !),并在任务之后(如果有),删除监听器