gpt4 book ai didi

java - 如何在 Java 中使用 .aiff 文件?

转载 作者:行者123 更新时间:2023-12-03 01:49:46 25 4
gpt4 key购买 nike

这是我目前正在尝试的:

final AudioClip note0 = new AudioClip(getClass().getResource("/Downloads/notes/A3.aiff").toString());
key0.setOnMouseClicked(new EventHandler<MouseEvent>()
{
@Override
public void handle(MouseEvent me)
{
note0.play();
}
});

我想将一个键(矩形对象)绑定(bind)到一个音符(.aiff 音频文件)。但是,我不确定如何在 .getResource() 中引用文件路径。谁能给我建议如何进行?谢谢!

最佳答案

getRessource 适用于资源,这些文件是程序的一部分。对于外部文件,您可能需要一个文件 URL:

final AudioClip note0 = new AudioClip("file:///Downloads/notes/A3.aiff");

路径中可能缺少主目录的路径。

或者,将 A3.aiff 复制到代码的资源(或源)根目录,然后将其作为资源访问:
final AudioClip note0 = new AudioClip(getClass().getResource("/A3.aiff").toString());

关于java - 如何在 Java 中使用 .aiff 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40731095/

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