简体   繁体   中英

Java: prevent beep sound on key press

I have a Java program which is launched from a browser, running with various java.awt.Button buttons. When clicked, it's fine. But when a key is pressed that corresponds to that button, Windows makes the "Default Beep" sound.

The buttons are created like this:

import java.awt.GridLayout;
import java.awt.BorderLayout;
import java.io.*;
import java.awt.Panel;
import java.awt.Button;
import java.awt.Font;
import java.awt.event.*;
import java.lang.Integer;

public class buttonPne extends Panel implements ActionListener, constants {

    private pClient parent = null;
    private labelPne buttonLabel[] = new labelPne[8];
    private Panel buttonPanel[] = new Panel[8];
    public Button theButtons[] = new Button[8];
    private boolean buttonStatus[] = new boolean[8];

    public buttonPne(pClient c) {

        parent = c;

        this.setLayout(new GridLayout(1, 8, 1, 0));

        for (int i = 0; i < 8; i++) {

            buttonLabel[i] = new labelPne(parent);
            buttonLabel[i].setSize(9, 9);

            theButtons[i] = new Button();
            theButtons[i].setFont(ButtonFont);
            theButtons[i].setActionCommand(Integer.toString(i));
            theButtons[i].addActionListener(this);
            theButtons[i].addKeyListener(parent);

            buttonPanel[i] = new Panel();
            buttonPanel[i].setBackground(backgroundColor);
            buttonPanel[i].setLayout(new BorderLayout());
            buttonPanel[i].add("North", theButtons[i]);
            buttonPanel[i].add("South", buttonLabel[i]);

            this.add(buttonPanel[i]);
        }

        Deactivate();
    }

The key presses are handled like this:

import java.awt.event.KeyEvent;

...

public class pClient extends Applet implements KeyListener, constants {

...

    f.addKeyListener(this);

...

public void keyPressed(KeyEvent evt) {

    int theKey;

    theKey = evt.getKeyCode();

    switch(theKey) {

    case KeyEvent.VK_1:
    case KeyEvent.VK_F1:
        buttons.DoButton(0);
        break;

...

public void DoButton(int theNumber) {

    if (buttonStatus[theNumber]) {

        if (parent.pollSendFlag(BUTTONS)) {

            parent.chat.takeFocus();
            parent.compass.Deactivate();
            Deactivate();
        }
    }
    return;
}

How can I stop the default beep from happening on key presses?

使用Swing组件而不是AWT组件。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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