所以,我对编程很新,我喜欢搞砸它,有一天我的朋友让我做一个程序,当你点击时,“ctrl”和“s”会被“按下”。我看了很多论坛试图制作一个功能代码但是,因为我是Java的新手,所以我只得到了单独的代码片段并将它们全部放在一起。
我的代码如下所示:
import java.awt.event.MouseEvent;
import java.awt.*;
import java.awt.event.*;
import java.awt.Robot;
import java.util.Scanner;
public class MyClass {
public static void main(String args[]) {
Scanner keyboard = new Scanner(System.in);
System.out.println("press any key to exit.");
keyboard.next();
System.exit(0);
}
public void mouseClicked(MouseEvent evt) {
try {
Robot robot = new Robot();
// Simulate a key press
robot.keyPress(KeyEvent.VK_CONTROL);
robot.keyPress(KeyEvent.VK_S);
robot.keyRelease(KeyEvent.VK_S);
robot.keyRelease(KeyEvent.VK_CONTROL);
} catch (AWTException e) {
}
}
}
答案 0 :(得分:0)
您的程序没有GUI,因此无需调用鼠标侦听器。侦听器中的代码看起来是正确的,您需要做的就是搜索如何创建基本GUI并添加鼠标侦听器,以便获得所需的结果。
答案 1 :(得分:0)
以下代码可帮助您处理Ctrl + S
public class SwingApp1 extends JFrame implements KeyListener {
public SwingApp1() {
setSize(500, 500);
setLocationRelativeTo(null);
setBackground(Color.blue);
addKeyListener(this);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String[] args) {
SwingApp1 main = new SwingApp1();
main.setVisible(true);
}
@Override
public void keyTyped(KeyEvent evt) {
}
@Override
public void keyPressed(KeyEvent e) {
System.out.println("Pressed=>" + e.getKeyCode());
if (e.getKeyCode() == 83) {
System.out.println("Pressed Ctrl + S");
} // Ctrl + S
}
@Override
public void keyReleased(KeyEvent e) {
}}