-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.2.0
-
x86
-
windows_95, windows_nt
Name: kk38543 Date: 11/17/98
occassionally, playing audio on NT
disables the sound. that is,
no other device can get to the sound
device. the only way to fix
this is to remote.
This is a real pain.
Here's a sample program.
import java.applet.*;
import java.net.*;
public class LoadAudioApp {
public static void main(String[] args) {
try {
URL url = new URL(null, "file:///d:/touchdown.au");
AudioClip ac = Applet.newAudioClip(url);
ac.play();
} catch (MalformedURLException e) {
e.printStackTrace();
}
}
}
(Review ID: 42759)
======================================================================
- duplicates
-
JDK-4302884 Audio device is not released when AudioClip stops
-
- Resolved
-