使用 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中文網其他相關文章!