gpt4 book ai didi

java - JPanel 上的 KeyListener 随机无响应

转载 作者:行者123 更新时间:2023-12-04 06:08:14 26 4
gpt4 key购买 nike

我的项目中的默认 Java KeyListener 有问题。
我注意到,当我开始时,KeyListener 有时似乎没有转发 KeyEvents。

问题症状:
启动应用程序键输入时未处理。这只有时会发生。有时我必须关闭并启动应用程序 7-8 次,直到出现。有时这是第一次尝试。当它发生时,直到我再次重新启动应用程序才会起作用。

我使用的是:
Window 7 x64 和最新的 Eclipse 和 JDK 版本。

我已经发现:
我在 Debug模式下设置了一个断点并检查了 JPanel 实例。 KeyListener 似乎总是成功添加到其中。
此外,MouseListener 和 MouseMotionListener 一直工作得很好。

最小代码:

public class Player implements KeyListener
{
public void keyTyped(KeyEvent e){}
public void keyReleased(KeyEvent e){ }

public void keyPressed(KeyEvent e){
System.out.println("Key Pressed!");
}

}

public class Game {

public static void main(String[] args) {
new Game();
}

public Game(){
JFrame window = new JFrame();
window.setVisible(true);

//Now set the window size correctly
window.setSize(800, 600);
//Set-up the rest of the window
window.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
window.setResizable(true);


//Create our panel
JPanel canvas = new JPanel();
canvas.setFocusable(true);
window.add( canvas ); //Add it to our window

Player k = new Player();
canvas.addKeyListener(k);
}
}

感谢您的时间!

PS:
好的,回答我自己的问题:

看来我必须调用 setVisible(true) 之后 设置窗口大小:
    JFrame window = new JFrame();


Now set the window size correctly
window.setSize(800, 600);
window.setVisible(true);

像这样切换 setSize() 和 setVisible() 似乎可以让它工作。试了十几次都没问题。

我猜如果它的大小为 0x0,setVisible 可能不喜欢将焦点放在窗口上。
问题是:为什么这只在某些情况下会导致问题?

最佳答案

尝试将 JButton 添加到您的“ Canvas ”JPanel,然后按下按钮并查看 KeyListener 会发生什么——它失败了,因为 JPanel 失去了焦点。为防止这种情况发生,请改用键绑定(bind)(请参阅我上面评论中的链接以获取教程)。例如,

import java.awt.event.*;
import java.awt.*;
import javax.swing.*;

@SuppressWarnings("serial")
public class Game2 {

private static final String UP = "up";

public static void main(String[] args) {
new Game2();
}

public Game2() {
JFrame window = new JFrame("Press up-arrow key");
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

JPanel canvas = new JPanel();
canvas.setPreferredSize(new Dimension(400, 300));
window.add(canvas);

canvas.add(new JButton(new AbstractAction("Press space-bar") {
public void actionPerformed(ActionEvent e) {
System.out.println("Button or space-bar pressed");
}
}));
ActionMap actionMap = canvas.getActionMap();
int condition = JComponent.WHEN_IN_FOCUSED_WINDOW;
InputMap inputMap = canvas.getInputMap(condition);

inputMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_UP, 0), UP);
actionMap.put(UP, new UpAction());

window.pack();
window.setLocationRelativeTo(null);
window.setVisible(true);
}
}

@SuppressWarnings("serial")
class UpAction extends AbstractAction {
@Override
public void actionPerformed(ActionEvent arg0) {
System.out.println("Up Arrow pressed!");
}
}

关于java - JPanel 上的 KeyListener 随机无响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8087536/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com