我正在使用带有JAVA的Minim 2.2.0库。该库要求我们定义一个定义两个方法的辅助类,并将该类的对象传递给Minim构造函数。我写了MinimHelper类如下。
public class MinimHelper {
String sketchPath( String fileName ) {
return "C:\\Users\\Martin\\Downloads\\"+fileName;
}
InputStream createInput(String fileName) {
InputStream is = null;
try{
is = new FileInputStream(sketchPath(fileName));
}
catch(Exception e){
System.out.println(e.toString());
}
return is;
}
}
我写了我的主要内容如下
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
AudioPlayer player;
Minim minim = new Minim (new MinimHelper());
player = minim.loadFile("Butterfly.mp3");
player.play();
}
}
但是,我在控制台中收到以下错误。
==== JavaSound Minim Error ====
==== Couldn't find a sketchPath method on the file loading object provided!
==== File recording will be disabled.
==== JavaSound Minim Error ====
==== Couldn't find a createInput method in the file loading object provided!
==== File loading will be disabled.
==== JavaSound Minim Error ====
==== Error invoking createInput on the file loader object: null
Exception in thread "main" java.lang.NullPointerException
at ddf.minim.javasound.JSMinim.getAudioRecordingStream(Unknown Source)
at ddf.minim.Minim.loadFile(Unknown Source)
at ddf.minim.Minim.loadFile(Unknown Source)
at Main.main(Main.java:9)
请告诉我我在哪里做错了。
答案 0 :(得分:0)
我认为=$H6<0
和sketchPath()
函数需要createInput()
才能让Minim找到它们。
通过the source,Minim最终调用public
来获取您已定义的功能。来自the Java API(强调我的):
返回一个Method对象,该对象反映此Class对象所表示的类或接口的指定 public 成员方法。
如果这不是问题:请确保Class.getMethod()
文件是您要告诉它的位置。
Butterfly.mp3
是否存在?它有正确的权限吗?
有关详细信息,您可以尝试在C:\\Users\\Martin\\Downloads\\Butterfly.mp3
课程中添加print语句。这些功能被调用了吗?传递给它的价值是什么?