-
Bug
-
Resolution: Fixed
-
P3
-
1.2.0, 1.2.2
-
1.2.2
-
x86
-
solaris_2.6, windows_95, windows_98, windows_nt
Name: jb85078 Date: 02/03/99
//
// By Pressing and Releasing the mouse in the Green
// square in the AudioClip Test Frame, you will play
// and stop a 44.1kHz 1.25sec WAV file. By continually
// pressing and releasing the mouse at various speeds,
// you will eventually (sometime after 4 and usually
// before 25 of these cycles) completely hang windoze 95
// and windoze 98. This problem never occurs on WinNT.
//
// Create a 44.1kHz WAV file of length 1.25 seconds,
// or email me, and I'll send you one.... ###@###.###
//
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
import java.util.*;
import java.net.URL;
public class JoeFrame extends Frame implements WindowListener {
JoeFrame( String title ) {
super( title );
addWindowListener( this );
setLayout( new FlowLayout() );
add( new JoeCanvas() );
setSize(300,250);
show();
}
public void windowClosed(WindowEvent event) {}
public void windowDeiconified(WindowEvent event) {}
public void windowIconified(WindowEvent event) {}
public void windowActivated(WindowEvent event) {}
public void windowDeactivated(WindowEvent event) {}
public void windowOpened(WindowEvent event) {}
public void windowClosing(WindowEvent event) {
System.exit(0);
}
public static void main( String args[] ) {
new JoeFrame( "AudioClip Test" );
}
}
class JoeCanvas extends Canvas implements MouseListener {
AudioClip ac = null;
JoeCanvas() {
super();
addMouseListener( this );
try {
URL soundURL = new URL( "file", "", "testSound.wav" );
ac = Applet.newAudioClip( soundURL );
} catch (Exception e) {
System.out.println("Bad URL for test sound");
}
}
public Dimension getPreferredSize() {
return new Dimension(200,200);
}
public void paint( Graphics g ) {
setBackground( new Color( 0,255,0 ) );
repaint();
}
public void mousePressed( MouseEvent e ) {
ac.play();
}
public void mouseReleased( MouseEvent e ) {
ac.stop();
}
public void mouseEntered( MouseEvent e ) {}
public void mouseExited( MouseEvent e ) {}
public void mouseClicked( MouseEvent e ) {}
}
(Review ID: 53233)
======================================================================
- duplicates
-
JDK-4213350 Win95 hangs while stopping audio in Java2D Mix.JavaMedia demo
-
- Closed
-
-
JDK-4187338 Java2Demo:Mix.JavaSound locks Win95 when "loop" button is maliciously pressed
-
- Closed
-