如何在Java中使用.AIFF文件



这是我当前正在尝试的:

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();
        }
    });

我想将键(矩形对象)绑定到注释(.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());

相关内容

  • 没有找到相关文章

最新更新