how to get coordinates of mouse click in java code example
Example: java mouselistener get 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
}