这是我到目前为止所得到的,但这是每1000ms打印一次鼠标位置,我该如何编码,只有当我点击一个位置时才打印出位置
public static void main(String[] args) throws InterruptedException {
while (true) {
Thread.sleep(1000);
System.out.println("(" + MouseInfo.getPointerInfo().getLocation().x + ", " + MouseInfo.getPointerInfo().getLocation().y + ")");
}
}
答案 0 :(得分:0)
使用mouselistener的java swing。你会得到鼠标位置。
http://www.realapplets.com/tutorial/MouseClickExample.html
http://docs.oracle.com/javase/7/docs/api/java/awt/event/MouseEvent.html