Java Sound API를 사용하여 MP3 재생
Java Sound API는 기본적으로 MP3 파일을 지원하지 않습니다. MP3를 재생하려면 mp3plugin.jar을 런타임 클래스 경로에 추가하면 됩니다. 이렇게 하려면:
또는 MP3를 포함한 임의의 오디오 데이터 길이를 지원하는 타사 라이브러리인 BigClip 클래스를 사용할 수 있습니다.
코드:
<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 중국어 웹사이트의 기타 관련 기사를 참조하세요!