通过“点击”使 JButton 操作发出声音声音
是否有内置功能可以使 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,Swing 只与 gui 相关。我认为没有任何类似的内置功能。您应该向 JButton 添加一个操作侦听器,并在 actionPerformed 方法中处理该功能。
对于音频播放的问题,您可以查看 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.
For what concern audio playback you can have a look at java sound api.