Hello Everyone, I'm writing an mp3 Player. I downloaded the JLayer 1.0. package but an error occurred while writing the following code. It has to do with the package :

-- cannot access javazoom.jl.player.Player;
class javazoom.jl.player.Player not found in stable package

Where did I go wrong ? I added JLayer library to my CLASSPATH ..




Code:
import javazoom.jl.player.Player;
import java.io.*;


public class MP3Player {

private Player player;
private InputStream is; 

[..]