是否可以创建多个机器人并让它们在多个桌面上运行"。我使用mac,可以创建多个桌面(也称为空格)并在每个桌面上运行许多窗口。是否可以在不同的桌面上运行多个使用机器人类的java命令行工具。如果是这样,我将如何做到这一点。
答案 0 :(得分:0)
为了做到这一点,您可能需要使用Java中的线程(也称为多线程)。这是示例程序,可以帮助您理解。线程不会完全同时运行,而是会同时运行。为了使它们同时运行,需要线程同步,这将使代码更加复杂
import java.awt.AWTException;
import java.awt.Robot;
import java.awt.event.InputEvent;
// Thread is what we are using
class Anything1 extends Thread {
boolean activate = true;
public void run() {
// add here your robot class with actions
while (activate) {
try {
Robot robot = new Robot();
} catch (AWTException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("Hello1");
}
}}
class Anything2 extends Thread {
boolean activate = true;
public void run() {
// add here your robot class with actions
while (activate) {
try {
Robot robot = new Robot();
} catch (AWTException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
// for testing
System.out.println("Hello2");
}
}
}
public class App {
public static void main(String[] args) {
// activates the process
Anything1 p = new Anything1();
Anything2 r = new Anything2();
p.start();
r.start();
}
}