.wav 파일 재생
import java.io.File;
import java.io.FileInputStream;
import sun.audio.AudioPlayer;
import sun.audio.AudioStream;
public class Test {
/**
* @param args
*/
public static void main(String[] args) {
try{
File theFile = new File("D:\\test.wav");
FileInputStream fis = new FileInputStream(theFile);
AudioStream as = new AudioStream(fis);
AudioPlayer.player.start(as);
}catch(Exception ex) {
}
}
}
'Java' 카테고리의 다른 글
[Java] 현재 날짜,시간 과 하루전 날짜 구하기 (0) | 2009.05.25 |
---|---|
[Java] StringBuffer와 StringBuilder (0) | 2009.05.25 |
[Java] 두 날짜는 몇일 차이가 날까.. (0) | 2009.04.14 |
[Java] File Stream, StringTokenizer 간단 예제. (0) | 2009.04.02 |
[Java] DB ConnectionPool... (0) | 2009.03.31 |