0
파일 재생 후 파일을 이동하려고합니다. 내 파일을 재생 javazoom의 basicplayer을 사용하고 있는데 내가JavaZOOM 재생 후 파일 이동
player.close();
controler.close();
and DSP.close();
및 없음 작업 여기
을 시도 내가 파일
public void play(File sound) {
if (sound.exists()) {
new Thread("Sound player") {
public void run() {
currentSelectedSound = sound;
try {
control.open(currentSelectedSound);
control.play();
setVolume(currentAudioVolume);
setPan(currentAudioPan);
} catch (BasicPlayerException e) {
e.printStackTrace();
System.err.println("Error!");
}
}
}.start();
} else {
Logger.logError(TAG, "File doesn't exist!");
}
}