Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4208403

playing and stopping 44.1kHz 1.25sec rapidly crashes windows 95 & 98

XMLWordPrintable

    • 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)
      ======================================================================

            kkytlesunw Kara Kytle (Inactive)
            jborgerssunw Jan Borgersen (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: