public class Robot {
public static void main(String[] args) {
// TODO 자동 생성된 메소드 스텁
PointerInfo pointerinfo;
String tmp = null;
while (true) {
pointerinfo = MouseInfo.getPointerInfo();
if (pointerinfo.getLocation().toString().equals(tmp) == false) {
tmp = pointerinfo.getLocation().toString();
System.out.println(pointerinfo.getLocation().toString());
}
}
}
}
마우스가 움직일때만 위치 출력해주는 간단한 소스
'JAVA > 자바' 카테고리의 다른 글
자바로 윈도우프로그램실행 (0) | 2015.06.24 |
---|---|
자바 한글 API Doc문서 (0) | 2015.06.22 |
자바 한글인코딩 (0) | 2015.06.11 |
자바 리스트 중복제거하는법 contains (0) | 2015.05.28 |
jsoup 서원대학교 연혁페이지 파싱 (0) | 2015.05.08 |