如何在 Java 中播放除哔哔声以外的声音?
Posted
技术标签:
【中文标题】如何在 Java 中播放除哔哔声以外的声音?【英文标题】:How to play a sound other than beep in Java? 【发布时间】:2015-04-18 07:11:08 【问题描述】:所以目前,这是 Java 中的“哔”声(在某些操作系统上不是真正的哔声):
Toolkit.getDefaultToolkit().beep();
但是代码使用了我电脑的“哔”/警报声...
有什么办法可以代替吗?
【问题讨论】:
您真的要替换它还是播放您选择的其他声音? 更像是播放我选择的另一种声音还是Java有任何声音? 【参考方案1】:我找到了一个interesting code here,它使用了不同于哔哔声的声音:
import javax.sound.sampled.*;
public class SoundUtils
public static float SAMPLE_RATE = 8000f;
public static void tone(int hz, int msecs)
throws LineUnavailableException
tone(hz, msecs, 1.0);
public static void tone(int hz, int msecs, double vol)
throws LineUnavailableException
byte[] buf = new byte[1];
AudioFormat af =
new AudioFormat(
SAMPLE_RATE, // sampleRate
8, // sampleSizeInBits
1, // channels
true, // signed
false); // bigEndian
SourceDataLine sdl = Audiosystem.getSourceDataLine(af);
sdl.open(af);
sdl.start();
for (int i=0; i < msecs*8; i++)
double angle = i / (SAMPLE_RATE / hz) * 2.0 * Math.PI;
buf[0] = (byte)(Math.sin(angle) * 127.0 * vol);
sdl.write(buf,0,1);
sdl.drain();
sdl.stop();
sdl.close();
public static void main(String[] args) throws Exception
SoundUtils.tone(1000,100);
Thread.sleep(1000);
SoundUtils.tone(100,1000);
Thread.sleep(1000);
SoundUtils.tone(5000,100);
Thread.sleep(1000);
SoundUtils.tone(400,500);
Thread.sleep(1000);
SoundUtils.tone(400,500, 0.2);
【讨论】:
【参考方案2】:只需创建一个这样的函数,然后在您喜欢的任何位置调用它,例如按钮单击或侦听器。
public void alert()
try
InputStream inputStream = getClass().getResourceAsStream("/sounds/sms.wav"); //Note this is path to whatever wav file you want
AudioStream audioStream = new AudioStream(inputStream);
AudioPlayer.player.start(audioStream);
catch (IOException e)
// Whatever exception you please;
// return inputStream;
另请注意:Audiostream 类是 Java 专有的,如果它是一个冗长的声音字节并且需要随时停止它,您可以在任何地方使用计时器、线程中断或按钮单击调用 AudioPlayer.player.stop(audioStream) .
【讨论】:
以上是关于如何在 Java 中播放除哔哔声以外的声音?的主要内容,如果未能解决你的问题,请参考以下文章