SlideShare a Scribd company logo
1 of 2
Download to read offline
how to play .wav files in a java program on multiple devices!!! For instance when I send my
source files to my brother they need to be able to play on his computer as well as mine?
Solution
package audioplay;
import javax.sound.sampled.UnsupportedAudioFileException;
import java.io.IOException;
import javax.sound.sampled.DataLine;
import javax.sound.sampled.LineUnavailableException;
import javax.sound.sampled.SourceDataLine;
import java.io.File;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioSystem;
public class AudioPlay {
// size required to read the audio stream
private static final int MAX_FILE_SIZE = 4096;
//Function to play audio file
void playMusic(String Path) {
File wavFile = new File(Path);
try {
AudioInputStream audioStream = AudioSystem.getAudioInputStream(wavFile);
AudioFormat format = audioStream.getFormat();
DataLine.Info info = new DataLine.Info(SourceDataLine.class, format);
SourceDataLine al = (SourceDataLine) AudioSystem.getLine(info);
al.open(format);
al.start();
System.out.println("Staring the Music....!!");
byte[] bytesBuffer = new byte[MAX_FILE_SIZE];
int bytesRead = -1;
while ((bytesRead = audioStream.read(bytesBuffer)) != -1) {
al.write(bytesBuffer, 0, bytesRead);
}
al.drain();
al.close();
audioStream.close();
System.out.println("Music stopped.!!");
} catch (UnsupportedAudioFileException ex) {
System.out.println("The audio file not supported.Please try again with another audio file...!!!");
ex.printStackTrace();
} catch (LineUnavailableException ex) {
System.out.println("Error Occurred");
ex.printStackTrace();
} catch (IOException ex) {
System.out.println("Error..File may b corrupted.");
ex.printStackTrace();
}
}
public static void main(String[] args) {
String audioFilePath = "C:UsersttechnocraftMusicadix.wav";
AudioPlay player = new AudioPlay();
player.playMusic(audioFilePath);
}
}

More Related Content

Similar to how to play .wav files in a java program on multiple devices!!! For .pdf

Self Produced Materials And Podcasting I E
Self Produced Materials And Podcasting I ESelf Produced Materials And Podcasting I E
Self Produced Materials And Podcasting I EVincent Hung
 
Audio ResourcesChoose one of them or any other of your c.docx
Audio ResourcesChoose one of them or any other of your c.docxAudio ResourcesChoose one of them or any other of your c.docx
Audio ResourcesChoose one of them or any other of your c.docxikirkton
 
Multimedia in Higher Education
Multimedia in Higher EducationMultimedia in Higher Education
Multimedia in Higher Educationlearning20
 
I can not get my code to comply it gets mad that I have run declare mo.docx
I can not get my code to comply it gets mad that I have run declare mo.docxI can not get my code to comply it gets mad that I have run declare mo.docx
I can not get my code to comply it gets mad that I have run declare mo.docxhamblymarta
 
What is java input and output stream?
What is java input and output stream?What is java input and output stream?
What is java input and output stream?kanchanmahajan23
 
What is java input and output stream?
What is java input and output stream?What is java input and output stream?
What is java input and output stream?kanchanmahajan23
 
Dr. Rajeshree Khande :Intoduction to java
Dr. Rajeshree Khande :Intoduction to javaDr. Rajeshree Khande :Intoduction to java
Dr. Rajeshree Khande :Intoduction to javaDrRajeshreeKhande
 
Intoduction to java
Intoduction to javaIntoduction to java
Intoduction to javajalinder123
 
Nerd sniping myself into a rabbit hole... Streaming online audio to a Sonos s...
Nerd sniping myself into a rabbit hole... Streaming online audio to a Sonos s...Nerd sniping myself into a rabbit hole... Streaming online audio to a Sonos s...
Nerd sniping myself into a rabbit hole... Streaming online audio to a Sonos s...Maarten Balliauw
 
Assignment 2Assignment Content1. Top of FormResource·.docx
Assignment 2Assignment Content1. Top of FormResource·.docxAssignment 2Assignment Content1. Top of FormResource·.docx
Assignment 2Assignment Content1. Top of FormResource·.docxbraycarissa250
 
KKBOX WWDC17 Airplay 2 - Dolphin
KKBOX WWDC17 Airplay 2 - DolphinKKBOX WWDC17 Airplay 2 - Dolphin
KKBOX WWDC17 Airplay 2 - DolphinLiyao Chen
 
How to run java program without IDE
How to run java program without IDEHow to run java program without IDE
How to run java program without IDEShweta Oza
 
01. Introduction to programming with java
01. Introduction to programming with java01. Introduction to programming with java
01. Introduction to programming with javaIntro C# Book
 

Similar to how to play .wav files in a java program on multiple devices!!! For .pdf (19)

Self Produced Materials And Podcasting I E
Self Produced Materials And Podcasting I ESelf Produced Materials And Podcasting I E
Self Produced Materials And Podcasting I E
 
Audio ResourcesChoose one of them or any other of your c.docx
Audio ResourcesChoose one of them or any other of your c.docxAudio ResourcesChoose one of them or any other of your c.docx
Audio ResourcesChoose one of them or any other of your c.docx
 
Code red SUM
Code red SUMCode red SUM
Code red SUM
 
Bhaloo
BhalooBhaloo
Bhaloo
 
Multimedia in Higher Education
Multimedia in Higher EducationMultimedia in Higher Education
Multimedia in Higher Education
 
I can not get my code to comply it gets mad that I have run declare mo.docx
I can not get my code to comply it gets mad that I have run declare mo.docxI can not get my code to comply it gets mad that I have run declare mo.docx
I can not get my code to comply it gets mad that I have run declare mo.docx
 
JAVA
JAVAJAVA
JAVA
 
Java file
Java fileJava file
Java file
 
What is java input and output stream?
What is java input and output stream?What is java input and output stream?
What is java input and output stream?
 
What is java input and output stream?
What is java input and output stream?What is java input and output stream?
What is java input and output stream?
 
Dr. Rajeshree Khande :Intoduction to java
Dr. Rajeshree Khande :Intoduction to javaDr. Rajeshree Khande :Intoduction to java
Dr. Rajeshree Khande :Intoduction to java
 
Intoduction to java
Intoduction to javaIntoduction to java
Intoduction to java
 
Introduction To Java.
Introduction To Java.Introduction To Java.
Introduction To Java.
 
Nerd sniping myself into a rabbit hole... Streaming online audio to a Sonos s...
Nerd sniping myself into a rabbit hole... Streaming online audio to a Sonos s...Nerd sniping myself into a rabbit hole... Streaming online audio to a Sonos s...
Nerd sniping myself into a rabbit hole... Streaming online audio to a Sonos s...
 
Assignment 2Assignment Content1. Top of FormResource·.docx
Assignment 2Assignment Content1. Top of FormResource·.docxAssignment 2Assignment Content1. Top of FormResource·.docx
Assignment 2Assignment Content1. Top of FormResource·.docx
 
KKBOX WWDC17 Airplay 2 - Dolphin
KKBOX WWDC17 Airplay 2 - DolphinKKBOX WWDC17 Airplay 2 - Dolphin
KKBOX WWDC17 Airplay 2 - Dolphin
 
Podcasting
PodcastingPodcasting
Podcasting
 
How to run java program without IDE
How to run java program without IDEHow to run java program without IDE
How to run java program without IDE
 
01. Introduction to programming with java
01. Introduction to programming with java01. Introduction to programming with java
01. Introduction to programming with java
 

More from lakshmijewellery

Write a shell command to substitute the first Nick to John in report.pdf
Write a shell command to substitute the first Nick to John in report.pdfWrite a shell command to substitute the first Nick to John in report.pdf
Write a shell command to substitute the first Nick to John in report.pdflakshmijewellery
 
Why did the European empires in the Americas have such an enormously.pdf
Why did the European empires in the Americas have such an enormously.pdfWhy did the European empires in the Americas have such an enormously.pdf
Why did the European empires in the Americas have such an enormously.pdflakshmijewellery
 
What were the unintended consequences of the Cuban Missile Crisis.pdf
What were the unintended consequences of the Cuban Missile Crisis.pdfWhat were the unintended consequences of the Cuban Missile Crisis.pdf
What were the unintended consequences of the Cuban Missile Crisis.pdflakshmijewellery
 
What process occurs when bile is mixed with fats How does this proc.pdf
What process occurs when bile is mixed with fats How does this proc.pdfWhat process occurs when bile is mixed with fats How does this proc.pdf
What process occurs when bile is mixed with fats How does this proc.pdflakshmijewellery
 
What is OBDC , Is it a program and what is the difference between .pdf
What is OBDC , Is it a program  and what is the difference between .pdfWhat is OBDC , Is it a program  and what is the difference between .pdf
What is OBDC , Is it a program and what is the difference between .pdflakshmijewellery
 
This Capital includes O A. mineral resources. O B. the money in one.pdf
This Capital includes O A. mineral resources. O B. the money in one.pdfThis Capital includes O A. mineral resources. O B. the money in one.pdf
This Capital includes O A. mineral resources. O B. the money in one.pdflakshmijewellery
 
What are the essential characteristics of cloud computingSolutio.pdf
What are the essential characteristics of cloud computingSolutio.pdfWhat are the essential characteristics of cloud computingSolutio.pdf
What are the essential characteristics of cloud computingSolutio.pdflakshmijewellery
 
We live in a very complex and culturally diverse society. When we br.pdf
We live in a very complex and culturally diverse society. When we br.pdfWe live in a very complex and culturally diverse society. When we br.pdf
We live in a very complex and culturally diverse society. When we br.pdflakshmijewellery
 
What are the values of the following expressions, assuming that n is.pdf
What are the values of the following expressions, assuming that n is.pdfWhat are the values of the following expressions, assuming that n is.pdf
What are the values of the following expressions, assuming that n is.pdflakshmijewellery
 
True or FalseA budget variance is the difference between expected.pdf
True or FalseA budget variance is the difference between expected.pdfTrue or FalseA budget variance is the difference between expected.pdf
True or FalseA budget variance is the difference between expected.pdflakshmijewellery
 
This level of measurement includes continuous measures A. Nominal; .pdf
This level of measurement includes continuous measures A. Nominal; .pdfThis level of measurement includes continuous measures A. Nominal; .pdf
This level of measurement includes continuous measures A. Nominal; .pdflakshmijewellery
 
Throughout the middle ages European philosophers believed in…a sci.pdf
Throughout the middle ages European philosophers believed in…a sci.pdfThroughout the middle ages European philosophers believed in…a sci.pdf
Throughout the middle ages European philosophers believed in…a sci.pdflakshmijewellery
 
The term intangible assets is used in accounting to denotea. suc.pdf
The term intangible assets is used in accounting to denotea. suc.pdfThe term intangible assets is used in accounting to denotea. suc.pdf
The term intangible assets is used in accounting to denotea. suc.pdflakshmijewellery
 
The methyl-accepting chemotaxis proteins of bacteriaa) integrate m.pdf
The methyl-accepting chemotaxis proteins of bacteriaa) integrate m.pdfThe methyl-accepting chemotaxis proteins of bacteriaa) integrate m.pdf
The methyl-accepting chemotaxis proteins of bacteriaa) integrate m.pdflakshmijewellery
 
The lagging strand is replicated with a series of Okazaki fragments .pdf
The lagging strand is replicated with a series of Okazaki fragments .pdfThe lagging strand is replicated with a series of Okazaki fragments .pdf
The lagging strand is replicated with a series of Okazaki fragments .pdflakshmijewellery
 
The files etcpasswd and etcshadow can be manually edited. Why wo.pdf
The files etcpasswd and etcshadow can be manually edited. Why wo.pdfThe files etcpasswd and etcshadow can be manually edited. Why wo.pdf
The files etcpasswd and etcshadow can be manually edited. Why wo.pdflakshmijewellery
 
The dividends received deduction Must exceed the applicable percentag.pdf
The dividends received deduction Must exceed the applicable percentag.pdfThe dividends received deduction Must exceed the applicable percentag.pdf
The dividends received deduction Must exceed the applicable percentag.pdflakshmijewellery
 
The chordae tendinae of the AV valves are anchored to the ___ of the .pdf
The chordae tendinae of the AV valves are anchored to the ___ of the .pdfThe chordae tendinae of the AV valves are anchored to the ___ of the .pdf
The chordae tendinae of the AV valves are anchored to the ___ of the .pdflakshmijewellery
 
Read the case Kenny An Effective Supervisor and in a 2-3 page p.pdf
Read the case Kenny An Effective Supervisor and in a 2-3 page p.pdfRead the case Kenny An Effective Supervisor and in a 2-3 page p.pdf
Read the case Kenny An Effective Supervisor and in a 2-3 page p.pdflakshmijewellery
 
Q4. How are automated tools used in the maintenance of information .pdf
Q4. How are automated tools used in the maintenance of information .pdfQ4. How are automated tools used in the maintenance of information .pdf
Q4. How are automated tools used in the maintenance of information .pdflakshmijewellery
 

More from lakshmijewellery (20)

Write a shell command to substitute the first Nick to John in report.pdf
Write a shell command to substitute the first Nick to John in report.pdfWrite a shell command to substitute the first Nick to John in report.pdf
Write a shell command to substitute the first Nick to John in report.pdf
 
Why did the European empires in the Americas have such an enormously.pdf
Why did the European empires in the Americas have such an enormously.pdfWhy did the European empires in the Americas have such an enormously.pdf
Why did the European empires in the Americas have such an enormously.pdf
 
What were the unintended consequences of the Cuban Missile Crisis.pdf
What were the unintended consequences of the Cuban Missile Crisis.pdfWhat were the unintended consequences of the Cuban Missile Crisis.pdf
What were the unintended consequences of the Cuban Missile Crisis.pdf
 
What process occurs when bile is mixed with fats How does this proc.pdf
What process occurs when bile is mixed with fats How does this proc.pdfWhat process occurs when bile is mixed with fats How does this proc.pdf
What process occurs when bile is mixed with fats How does this proc.pdf
 
What is OBDC , Is it a program and what is the difference between .pdf
What is OBDC , Is it a program  and what is the difference between .pdfWhat is OBDC , Is it a program  and what is the difference between .pdf
What is OBDC , Is it a program and what is the difference between .pdf
 
This Capital includes O A. mineral resources. O B. the money in one.pdf
This Capital includes O A. mineral resources. O B. the money in one.pdfThis Capital includes O A. mineral resources. O B. the money in one.pdf
This Capital includes O A. mineral resources. O B. the money in one.pdf
 
What are the essential characteristics of cloud computingSolutio.pdf
What are the essential characteristics of cloud computingSolutio.pdfWhat are the essential characteristics of cloud computingSolutio.pdf
What are the essential characteristics of cloud computingSolutio.pdf
 
We live in a very complex and culturally diverse society. When we br.pdf
We live in a very complex and culturally diverse society. When we br.pdfWe live in a very complex and culturally diverse society. When we br.pdf
We live in a very complex and culturally diverse society. When we br.pdf
 
What are the values of the following expressions, assuming that n is.pdf
What are the values of the following expressions, assuming that n is.pdfWhat are the values of the following expressions, assuming that n is.pdf
What are the values of the following expressions, assuming that n is.pdf
 
True or FalseA budget variance is the difference between expected.pdf
True or FalseA budget variance is the difference between expected.pdfTrue or FalseA budget variance is the difference between expected.pdf
True or FalseA budget variance is the difference between expected.pdf
 
This level of measurement includes continuous measures A. Nominal; .pdf
This level of measurement includes continuous measures A. Nominal; .pdfThis level of measurement includes continuous measures A. Nominal; .pdf
This level of measurement includes continuous measures A. Nominal; .pdf
 
Throughout the middle ages European philosophers believed in…a sci.pdf
Throughout the middle ages European philosophers believed in…a sci.pdfThroughout the middle ages European philosophers believed in…a sci.pdf
Throughout the middle ages European philosophers believed in…a sci.pdf
 
The term intangible assets is used in accounting to denotea. suc.pdf
The term intangible assets is used in accounting to denotea. suc.pdfThe term intangible assets is used in accounting to denotea. suc.pdf
The term intangible assets is used in accounting to denotea. suc.pdf
 
The methyl-accepting chemotaxis proteins of bacteriaa) integrate m.pdf
The methyl-accepting chemotaxis proteins of bacteriaa) integrate m.pdfThe methyl-accepting chemotaxis proteins of bacteriaa) integrate m.pdf
The methyl-accepting chemotaxis proteins of bacteriaa) integrate m.pdf
 
The lagging strand is replicated with a series of Okazaki fragments .pdf
The lagging strand is replicated with a series of Okazaki fragments .pdfThe lagging strand is replicated with a series of Okazaki fragments .pdf
The lagging strand is replicated with a series of Okazaki fragments .pdf
 
The files etcpasswd and etcshadow can be manually edited. Why wo.pdf
The files etcpasswd and etcshadow can be manually edited. Why wo.pdfThe files etcpasswd and etcshadow can be manually edited. Why wo.pdf
The files etcpasswd and etcshadow can be manually edited. Why wo.pdf
 
The dividends received deduction Must exceed the applicable percentag.pdf
The dividends received deduction Must exceed the applicable percentag.pdfThe dividends received deduction Must exceed the applicable percentag.pdf
The dividends received deduction Must exceed the applicable percentag.pdf
 
The chordae tendinae of the AV valves are anchored to the ___ of the .pdf
The chordae tendinae of the AV valves are anchored to the ___ of the .pdfThe chordae tendinae of the AV valves are anchored to the ___ of the .pdf
The chordae tendinae of the AV valves are anchored to the ___ of the .pdf
 
Read the case Kenny An Effective Supervisor and in a 2-3 page p.pdf
Read the case Kenny An Effective Supervisor and in a 2-3 page p.pdfRead the case Kenny An Effective Supervisor and in a 2-3 page p.pdf
Read the case Kenny An Effective Supervisor and in a 2-3 page p.pdf
 
Q4. How are automated tools used in the maintenance of information .pdf
Q4. How are automated tools used in the maintenance of information .pdfQ4. How are automated tools used in the maintenance of information .pdf
Q4. How are automated tools used in the maintenance of information .pdf
 

Recently uploaded

How To Create Editable Tree View in Odoo 17
How To Create Editable Tree View in Odoo 17How To Create Editable Tree View in Odoo 17
How To Create Editable Tree View in Odoo 17Celine George
 
Đề tieng anh thpt 2024 danh cho cac ban hoc sinh
Đề tieng anh thpt 2024 danh cho cac ban hoc sinhĐề tieng anh thpt 2024 danh cho cac ban hoc sinh
Đề tieng anh thpt 2024 danh cho cac ban hoc sinhleson0603
 
Observing-Correct-Grammar-in-Making-Definitions.pptx
Observing-Correct-Grammar-in-Making-Definitions.pptxObserving-Correct-Grammar-in-Making-Definitions.pptx
Observing-Correct-Grammar-in-Making-Definitions.pptxAdelaideRefugio
 
Spring gala 2024 photo slideshow - Celebrating School-Community Partnerships
Spring gala 2024 photo slideshow - Celebrating School-Community PartnershipsSpring gala 2024 photo slideshow - Celebrating School-Community Partnerships
Spring gala 2024 photo slideshow - Celebrating School-Community Partnershipsexpandedwebsite
 
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjj
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjjStl Algorithms in C++ jjjjjjjjjjjjjjjjjj
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjjMohammed Sikander
 
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...Nguyen Thanh Tu Collection
 
Book Review of Run For Your Life Powerpoint
Book Review of Run For Your Life PowerpointBook Review of Run For Your Life Powerpoint
Book Review of Run For Your Life Powerpoint23600690
 
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdf
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdfFICTIONAL SALESMAN/SALESMAN SNSW 2024.pdf
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdfPondicherry University
 
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文中 央社
 
male presentation...pdf.................
male presentation...pdf.................male presentation...pdf.................
male presentation...pdf.................MirzaAbrarBaig5
 
MOOD STABLIZERS DRUGS.pptx
MOOD     STABLIZERS           DRUGS.pptxMOOD     STABLIZERS           DRUGS.pptx
MOOD STABLIZERS DRUGS.pptxPoojaSen20
 
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...EADTU
 
AIM of Education-Teachers Training-2024.ppt
AIM of Education-Teachers Training-2024.pptAIM of Education-Teachers Training-2024.ppt
AIM of Education-Teachers Training-2024.pptNishitharanjan Rout
 
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading RoomSternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading RoomSean M. Fox
 
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUM
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUMDEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUM
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUMELOISARIVERA8
 
ANTI PARKISON DRUGS.pptx
ANTI         PARKISON          DRUGS.pptxANTI         PARKISON          DRUGS.pptx
ANTI PARKISON DRUGS.pptxPoojaSen20
 

Recently uploaded (20)

How To Create Editable Tree View in Odoo 17
How To Create Editable Tree View in Odoo 17How To Create Editable Tree View in Odoo 17
How To Create Editable Tree View in Odoo 17
 
Đề tieng anh thpt 2024 danh cho cac ban hoc sinh
Đề tieng anh thpt 2024 danh cho cac ban hoc sinhĐề tieng anh thpt 2024 danh cho cac ban hoc sinh
Đề tieng anh thpt 2024 danh cho cac ban hoc sinh
 
Observing-Correct-Grammar-in-Making-Definitions.pptx
Observing-Correct-Grammar-in-Making-Definitions.pptxObserving-Correct-Grammar-in-Making-Definitions.pptx
Observing-Correct-Grammar-in-Making-Definitions.pptx
 
Spring gala 2024 photo slideshow - Celebrating School-Community Partnerships
Spring gala 2024 photo slideshow - Celebrating School-Community PartnershipsSpring gala 2024 photo slideshow - Celebrating School-Community Partnerships
Spring gala 2024 photo slideshow - Celebrating School-Community Partnerships
 
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjj
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjjStl Algorithms in C++ jjjjjjjjjjjjjjjjjj
Stl Algorithms in C++ jjjjjjjjjjjjjjjjjj
 
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...
ĐỀ THAM KHẢO KÌ THI TUYỂN SINH VÀO LỚP 10 MÔN TIẾNG ANH FORM 50 CÂU TRẮC NGHI...
 
VAMOS CUIDAR DO NOSSO PLANETA! .
VAMOS CUIDAR DO NOSSO PLANETA!                    .VAMOS CUIDAR DO NOSSO PLANETA!                    .
VAMOS CUIDAR DO NOSSO PLANETA! .
 
Book Review of Run For Your Life Powerpoint
Book Review of Run For Your Life PowerpointBook Review of Run For Your Life Powerpoint
Book Review of Run For Your Life Powerpoint
 
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdf
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdfFICTIONAL SALESMAN/SALESMAN SNSW 2024.pdf
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdf
 
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文會考英文
 
Mattingly "AI and Prompt Design: LLMs with NER"
Mattingly "AI and Prompt Design: LLMs with NER"Mattingly "AI and Prompt Design: LLMs with NER"
Mattingly "AI and Prompt Design: LLMs with NER"
 
ESSENTIAL of (CS/IT/IS) class 07 (Networks)
ESSENTIAL of (CS/IT/IS) class 07 (Networks)ESSENTIAL of (CS/IT/IS) class 07 (Networks)
ESSENTIAL of (CS/IT/IS) class 07 (Networks)
 
male presentation...pdf.................
male presentation...pdf.................male presentation...pdf.................
male presentation...pdf.................
 
MOOD STABLIZERS DRUGS.pptx
MOOD     STABLIZERS           DRUGS.pptxMOOD     STABLIZERS           DRUGS.pptx
MOOD STABLIZERS DRUGS.pptx
 
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
Transparency, Recognition and the role of eSealing - Ildiko Mazar and Koen No...
 
AIM of Education-Teachers Training-2024.ppt
AIM of Education-Teachers Training-2024.pptAIM of Education-Teachers Training-2024.ppt
AIM of Education-Teachers Training-2024.ppt
 
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading RoomSternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
Sternal Fractures & Dislocations - EMGuidewire Radiology Reading Room
 
Mattingly "AI & Prompt Design: Named Entity Recognition"
Mattingly "AI & Prompt Design: Named Entity Recognition"Mattingly "AI & Prompt Design: Named Entity Recognition"
Mattingly "AI & Prompt Design: Named Entity Recognition"
 
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUM
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUMDEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUM
DEMONSTRATION LESSON IN ENGLISH 4 MATATAG CURRICULUM
 
ANTI PARKISON DRUGS.pptx
ANTI         PARKISON          DRUGS.pptxANTI         PARKISON          DRUGS.pptx
ANTI PARKISON DRUGS.pptx
 

how to play .wav files in a java program on multiple devices!!! For .pdf

  • 1. how to play .wav files in a java program on multiple devices!!! For instance when I send my source files to my brother they need to be able to play on his computer as well as mine? Solution package audioplay; import javax.sound.sampled.UnsupportedAudioFileException; import java.io.IOException; import javax.sound.sampled.DataLine; import javax.sound.sampled.LineUnavailableException; import javax.sound.sampled.SourceDataLine; import java.io.File; import javax.sound.sampled.AudioInputStream; import javax.sound.sampled.AudioFormat; import javax.sound.sampled.AudioSystem; public class AudioPlay { // size required to read the audio stream private static final int MAX_FILE_SIZE = 4096; //Function to play audio file void playMusic(String Path) { File wavFile = new File(Path); try { AudioInputStream audioStream = AudioSystem.getAudioInputStream(wavFile); AudioFormat format = audioStream.getFormat(); DataLine.Info info = new DataLine.Info(SourceDataLine.class, format); SourceDataLine al = (SourceDataLine) AudioSystem.getLine(info); al.open(format);
  • 2. al.start(); System.out.println("Staring the Music....!!"); byte[] bytesBuffer = new byte[MAX_FILE_SIZE]; int bytesRead = -1; while ((bytesRead = audioStream.read(bytesBuffer)) != -1) { al.write(bytesBuffer, 0, bytesRead); } al.drain(); al.close(); audioStream.close(); System.out.println("Music stopped.!!"); } catch (UnsupportedAudioFileException ex) { System.out.println("The audio file not supported.Please try again with another audio file...!!!"); ex.printStackTrace(); } catch (LineUnavailableException ex) { System.out.println("Error Occurred"); ex.printStackTrace(); } catch (IOException ex) { System.out.println("Error..File may b corrupted."); ex.printStackTrace(); } } public static void main(String[] args) { String audioFilePath = "C:UsersttechnocraftMusicadix.wav"; AudioPlay player = new AudioPlay(); player.playMusic(audioFilePath); } }