快速业务通道

Merlin的魔力: Swing中的声音 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-20
)”声音文件:

UIManager.put("OptionPane.questionSound", "sounds/OptionPaneError.wav");

这就是在 Swing 程序中播放与预先定义好的操作关联的听觉提示所涉及的所有内容。

完整示例

为了展示我们刚才描述过的功能,清单 1 中的程序将显示三个单选按钮,让您选择希望使用三种提示设置中的哪一种。您可以参看图 1 中简单的用户界面。

图 1. 示例应用程序界面

Merlin的魔力: Swing中的声音 - 编程入门网

程序还显示了两个显示弹出窗口的按钮。启用后,显示弹出窗口的操作将触发声音提示。请您自己将确认对话框出现时播放“ 错误”声音文件的代码行标记出来。

清单 1. 声音示例

import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Audio extends JFrame {   public Audio() {    super("Auditory Popups");    setDefaultCloseOperation(EXIT_ON_CLOSE);    UIManager.put("AuditoryCues.playList",     UIManager.get("AuditoryCues.defaultCueList"));    UIManager.put("OptionPane.questionSound",     "sounds/OptionPaneError.wav");    JPanel contentPane = (JPanel)this.getContentPane();    JPanel center = new JPanel();    ButtonGroup buttonGroup = new ButtonGroup();    JRadioButton defaultAudio = new JRadioButton("Default", true);    center.add(defaultAudio);    buttonGroup.add(defaultAudio);    defaultAudio.addActionListener(new ActionListener() {     public void actionPerformed(ActionEvent e) {      UIManager.put("AuditoryCues.playList",       UIManager.get("AuditoryCues.defaultCueList"));     }    });    JRadioButton offAudio = new JRadioButton("Off", false);    center.add(offAudio);    buttonGroup.add(offAudio);    offAudio.addActionListener(new ActionListener() {     public void actionPerformed(ActionEvent e) {      UIManager.put("AuditoryCues.playList",       UIManager.get("AuditoryCues.noAuditoryCues"));     }    });    JRadioButton onAudio = new JRadioButton("On", false);    center.add(onAudio);    buttonGroup.add(onAudio);    onAudio.addActionListener(new ActionListener() {     public void actionPerformed(ActionEvent e) {      UIManager.put("AuditoryCues.playList",       UIManager.get("AuditoryCues.allAuditoryCues"));     }    });    contentPane.add(center, BorderLayout.CENTER);    JButton confirmButton = new JButton("Confirmation Dialog");    contentPane.add(confirmButton, BorderLayout.SOUTH);    confirmButton.addActionListener(new ActionListener() {     public void actionPerformed(ActionEvent e) {      int result = JOptionPane.showConfirmDialog(Audio.this,       "Confirm?");      if (result == JOptionPane.YES_OPTION) {       JOptionPane.showMessageDialog(Audio.this, "Confirmed");      } else {       JOptionPane.showMessageDialog(Audio.this, "Rejected");      }     }    });    JButton messageButton = new JButton("Message Dialog");    contentPane.add(m

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号