gpt4 book ai didi

java - 在 Java 中使用 Minim 库。无法让助手类工作

转载 作者:行者123 更新时间:2023-11-30 07:09:48 24 4
gpt4 key购买 nike

我正在使用 Minim 2.2.0 库和 JAVA。该库要求我们定义一个定义两个方法的辅助类,并将该类的一个对象传递给 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)

请告诉我哪里做错了。

最佳答案

我认为 sketchPath()createInput() 函数需要是public,Minim 才能找到它们。

正在经历the source ,Minim 最终调用 Class.getMethod() 来获取您定义的函数。来自 the Java API (强调我的):

Returns a Method object that reflects the specified public member method of the class or interface represented by this Class object.

如果这不是问题:请确保 Butterfly.mp3 文件位于您指定的位置。

C:\\Users\\Martin\\Downloads\\Butterfly.mp3 是否存在?它有正确的权限吗?

有关详细信息,您可以尝试在 MinimHelper 类中添加打印语句。函数是否被调用?传递给它的值是什么?

关于java - 在 Java 中使用 Minim 库。无法让助手类工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39416107/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com