简体   繁体   English

如何获取Java应用程序的鼠标位置?

[英]how to get mouse position of a Java application?

documentDOM.addEventListener("click", new EventListener() {
                            public void handleEvent(Event evt) {

                                if (evt.getType().equals("click")) {
                                    System.out.println("hello");
                                    MouseEvent mouseIvent = (MouseEvent) evt;
                                    int screenX = mouseIvent.getXOnScreen();
                                    int screenY = mouseIvent.getYOnScreen();
                                    System.out.println("screen(X,Y) = " + screenX + "\t" + screenY);
                               }
                            }
                        }, true);

I need to locate a specific pixel location on my Java application. 我需要在Java应用程序上找到特定的像素位置。 This Java application can be windowed or maximized window. 该Java应用程序可以是窗口化或最大化窗口。

My code somehow doesn't return the integers. 我的代码以某种方式不返回整数。 this event does fire as hello message is spit out. 当您打出问候消息时,会触发此事件。

The key is that you must add a MouseListener to the component which will report the click locations: 关键是您必须将MouseListener添加到组件中,该组件将报告单击位置:

public class LocationPrinter extends MouseAdapter {
  public static void main(String args[]) {
    JPanel panel = new JPanel();
    panel.setPreferredSize(new Dimension(300, 200));
    panel.addMouseListener(new LocationPrinter());
    JFrame frame = new JFrame("Location Window");
    frame.getContentPane().add(panel);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.pack();
    frame.setVisible(true);
  }
  @Override
  public void mouseClicked(MouseEvent me) {
    int screenX = me.getXOnScreen();
    int screenY = me.getYOnScreen();
    System.out.println("screen(X,Y) = " + screenX + "," + screenY);
  }
}
//http://www.geekssay.com/java-program-to-get-mouse-coordinates/

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class TestInner {
 private JFrame f;
 private JTextField tf;
 
 public TestInner () {
 f = new JFrame ("Inner classes example");
 tf = new JTextField(30);
 }
 
 class MyMouseMotionListener extends MouseMotionAdapter {
 public void mouseDragged(MouseEvent e) {
 String s = "Mouse dragging: X = "+ e.getX()
 + " Y = " + e.getY();
 tf.setText(s);
 }
 }
 
 public void launchFrame() {
 JLabel label = new JLabel("Click and drag the mouse");
 // add componers to the frame
 f.add(label, BorderLayout.NORTH);
 f.add(tf, BorderLayout.SOUTH);
 // Add a listener that uses an Inner class
 f.addMouseMotionListener(new MyMouseMotionListener());
 f.addMouseListener(new MouseClickHandler());
 // Size the frame and make it visible
 f.setSize(300, 200);
 f.setVisible(true);
}
 
 public static void main(String args[]) {
 TestInner obj = new TestInner();
 obj.launchFrame();
 }
}
 
class MouseClickHandler extends MouseAdapter {
 
// We just need the mouseClick handler, so we use
 // an adapter to avoid having to write all the
 // event handler methods
 
 public void mouseClicked(MouseEvent e) {
 // Do stuff with the mouse click...
 }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM