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 }