在这段代码中
in = new FileInputStream(getClass().getResource("/sonidos/inicio.wav").toString());
Eclipse 说:
java.io.FileNotFoundException: file:\C:\Users\OcioZ\Dropbox\Iker-Diego\JavaMusicianClient\bin\sonidos\inicio.wav (The file name, dir. name or vol. label name are not correct)
但声音文件存在。我正在将 "getClass().getResource("...").toString()" 写入到识别的 jar 文件中。
如果我只写相对路径:
in = new FileInputStream("/sonidos/inicio.wav");
声音在 Eclipse 中正确播放,但在 jar 文件中没有声音。
有任何想法吗??
谢谢你。