我是java编程的初学者,我希望在Windows中获取闪烁光标的位置而不是Java窗口。怎么弄? Java有没有API可以做到这一点?
我尝试了这段代码,但它获取了当前的鼠标光标。
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.widgets.Display;
public class CursotLocationDemo{
public static void main(String[] args){
Display d = new Display();
while(true){
Point p = d.getCursorLocation();
System.out.println("Cursor location is: " + p);
try{ Thread.sleep(200); } catch (InterruptedException e) {}
}
}
}
目标是将光标放在另一个应用程序中,如记事本或其他文本编辑器。
答案 0 :(得分:0)