----------------解决方案--------------------------------------------------------
beep();
----------------解决方案--------------------------------------------------------
晕,有这么简单就可以设置了吗?只用beep(),不是其它语句了吗
----------------解决方案--------------------------------------------------------
可以参考这个帖子:http://bbs.bc-cn.net/viewthread.php?tid=148649&star=at#
----------------解决方案--------------------------------------------------------
还是不太清楚,就比如说我下面这个代码,该怎样加提示音,请指点
if(search.indexOf(txtContent.getText())<0){
JOptionPane.showMessageDialog(this,"找不到'"+txtContent.getText()+"'","记事本",JOptionPane.INFORMATION_MESSAGE);
}
----------------解决方案--------------------------------------------------------
一样的,该发出声音的地方都会发出来的
----------------解决方案--------------------------------------------------------
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class EventDemo6 extends WindowAdapter implements ActionListener
{
JButton b1 = null;
JButton b2 = null;
public EventDemo6()
{
JFrame f = new JFrame("EventDemo6");
Container contentPane = f.getContentPane();
contentPane.setLayout(new GridLayout(1,2));
b1 = new JButton("按我有声音喔");
b2 = new JButton("按我可开新窗口");
b1.addActionListener(this);
b2.addActionListener(this);
contentPane.add(b1);
contentPane.add(b2);
f.pack();
f.show();
f.addWindowListener(this);
}
public void actionPerformed(ActionEvent e)
{
if((e.getActionCommand()).equals("按我有声音喔")) //getActionCommand()方法会返回按钮上的文字字符串。
Toolkit.getDefaultToolkit().beep();
if((e.getActionCommand()).equals("按我可开新窗口"))
{
JFrame newF = new JFrame("新窗口");
newF.setSize(200,200);
newF.show();
}
}
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
public static void main(String args[])
{
new EventDemo6();
}
}
----------------解决方案--------------------------------------------------------
就这一种声音吗
----------------解决方案--------------------------------------------------------