このコードのエラーが何であるか理解できません。
public void run(String url) {
try {
FileInputStream file;
file = new FileInputStream(this.getClass().getResource(url));
Player p = new Player(file);
p.play();
}catch(Exception e){
System.err.print( url + e);
}
}
実行しようとすると、「FileInputStream(URL)に適したコンストラクターが見つかりません」と表示されます。なぜそれが起こっているのですか?