通过“点击”使 JButton 操作发出声音声音

发布于 2024-12-05 07:33:08 字数 91 浏览 1 评论 0原文

是否有内置功能可以使 Swing JButton 发声。我对咔嗒声或蜂鸣声感兴趣。我知道我可以在事件处理程序中调用产生噪音的代码,但我特别询问任何只需要启用的内置功能。

Is there a built-in feature to make a Swing JButton audible. I am interested in a click or beep sound. I know I can invoke noise making code in the event handler, but I am specifically inquiring about any built-in capability that only needs to be enabled.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少跟Wǒ拽 2024-12-12 07:33:08

不,Swing 只与 gui 相关。我认为没有任何类似的内置功能。您应该向 JButton 添加一个操作侦听器,并在 actionPerformed 方法中处理该功能。

JButton b = new JButton();
b.addActionListener(listener); //where listener implements ActionListener

//inside your listener
public void actionPerformed(ActionEvent e){
    //play your sound
}

对于音频播放的问题,您可以查看 java sound api

No, Swing is only about gui. I think there isn't any built-in feature like that. You should add an action listener to your JButton and handle that feature inside actionPerformed method.

JButton b = new JButton();
b.addActionListener(listener); //where listener implements ActionListener

//inside your listener
public void actionPerformed(ActionEvent e){
    //play your sound
}

For what concern audio playback you can have a look at java sound api.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文