使用 Java Sound API 播放 MP3
Java Sound API 本身不支持 MP3 文件。要播放 MP3,您可以将 mp3plugin.jar 添加到运行时类路径。为此:
或者,您可以使用 BigClip 类,这是一个支持任意音频数据长度(包括 MP3)的第三方库。
代码:
<code class="java">import javax.sound.sampled.*; import java.io.*; class AudioPlayer { public static void main(String[] args) throws Exception { // Custom BigClip class that supports MP3s BigClip clip = new BigClip(); // Open the MP3 file clip.open(AudioSystem.getAudioInputStream(new File("sound.mp3"))); // Start playing the sound clip.start(); } }</code>
以上是如何使用 Java Sound API 播放 MP3?的详细内容。更多信息请关注PHP中文网其他相关文章!