Java: Console stops working when using javazoom

129 Views Asked by At

When I start playing music by javazoom library, console stops answer. I can write anything, but no response.

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.util.Scanner;
import javazoom.jl.decoder.JavaLayerException;
import javazoom.jl.player.advanced.AdvancedPlayer;




public class Main {
    
    public static void men(int i) {
        try {
            FileInputStream fis = new FileInputStream("Filename.WAV");
            AdvancedPlayer player = new AdvancedPlayer(fis);
            player.play();  
        }catch(FileNotFoundException e){
            e.printStackTrace();
        }catch(JavaLayerException e) {
            e.printStackTrace();
        }
    }
    
    public static Scanner scn = new Scanner(System.in);


    public static void main(String[] args) {

        while(true) {
            int i = scn.nextInt();
            if(i == 1) {
                men(i);
            }
            if(i == 5) {
                System.out.println("i am here");
            }
        }   
    }
}

Is there solution? Or javazoom can't play audio and do other things?

1

There are 1 best solutions below

0
On

I'm not clear what you mean by "console stops answer" and "Javazoom can't play audio and do other things."

You can execute the javazoom play command in its own thread. While that thread runs concurrently, your program will be free to execute other tasks.

Do you know how to create and launch a thread? Here is Oracle's tutorial Processes and Threads.