java get mouse coordinates

https‮‬://www.lautturi.com
java get mouse coordinates
implement MouseListener

@Override
public void mouseClicked(MouseEvent e) {
    int x=e.getX();
    int y=e.getY();
    System.out.println(x+","+y);//these co-ords are relative to the component
}
Created Time:2017-09-27 13:54:54  Author:lautturi