How to Play MP3 Music in Java

This tutorial entitled “How to Play MP3 Music using Java ” will help you on how to create an MP3 Player in Java using Nebeans IDE.

Before you proceed, please search and download the “JLayer” Library from any search engine. This library is use for playing MP3 music as decoder. Please follow all the steps to complete this tutorial.

How to Play MP3 in Java Steps

  1. Add or Create a new JFrame Form inside your project.

2. Design your JFrame just like the image below.

3. Insert your new download library inside your project.

4. Add an MP3 music inside your source package. We will use the MP3 to our player.

5. Above your class, insert the following code below to access the required library for music player.

import java.io.*;
import javazoom.jl.decoder.JavaLayerException;
import javazoom.jl.player.*;

 

6. Double click your button and insert the codes below.

try{
File file = new File("Jonas Blue - By Your Side ft. RAYE.mp3");
FileInputStream fis = new FileInputStream(file);
BufferedInputStream bis = new BufferedInputStream(fis);
try{

Player player = new Player(bis);
player.play();

}catch(Exception e){
System.out.println(e.getMessage());
}

}catch(Exception e){
System.out.println(e.getMessage());
}

 

7. Run your program and after hitting play button, the music will start to play.

Play MP3 Music using Java Final Output

This is the basic example of playing MP3 music using Java. This music player can only play a specified music. You can also play much music in one button event but it needs more time and coding technique. Just follow my new tutorials about playing music.

About How to Play MP3 Music In Java

Project Name: How to Play MP3 Music
Language/s Used: JAVA
Database: None
Type: Desktop Application
Developer: IT SOURCECODE
Updates: 0

Leave a Comment