Java program code for playing Wav audio files

Source: Internet
Author: User

This article recommends a good example program for playing Wav audio files. If you want to use java, you can refer to it.

The Code is as follows: Copy code

Import java. io. File;
Import java. io. FileInputStream;
Import javax. sound. sampled .*;
Import javax. swing .*;

Public class test extends JFrame
{
Public static void main (String [] args)
{
Test app = new test ();
App. playStartupSound ();
}

Public test ()
{
SetSize (300,200 );
Setdefaclocloseoperation (JFrame. EXIT_ON_CLOSE );
SetVisible (true );
}

Private void playStartupSound ()
{
Runnable soundPlayer = new Runnable (){
Public void run (){
Try {
File tadaSound = new File ("C:/Windows/media/tada.wav ");
AudioInputStream audioInputStream = AudioSystem
. GetAudioInputStream (new FileInputStream (tadaSound ));
AudioFormat audioFormat = audioInputStream
. GetFormat ();
DataLine. Info dataLineInfo = new DataLine. Info (
Clip. class, audioFormat );
Clip clip = (Clip) AudioSystem
. GetLine (dataLineInfo );
Clip. open (audioInputStream );
Clip. start ();
} Catch (Exception e ){
E. printStackTrace ();
}
}
};
Thread soundPlayingThread = new Thread (soundPlayer );
SoundPlayingThread. start ();
}
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.