0
這是我目前正在嘗試:如何在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()中的文件路徑。任何人都可以向我提供如何繼續的建議嗎?謝謝!