在快照所示的utility包中,有一个类Constants。在与utility相同的目录中,有一个名为foldersounds,也显示在快照中。到目前为止,我一直在提供.wav文件的完整路径。

Like W:/UnderTest/Blaah/Blaaaaah/Foo/sounds/file.wav

我应该如何给出路径,以便在制作.jar文件时,声音仍然有效。我尝试了这个:

../sounds/Player_1.wav


但它不起作用,我得到java.io.FileNotFoundException: ..\sounds\Player_1.wav (The system cannot find the path specified)

最佳答案

尝试这个....

URL url = Constants.class.getResource("/sounds/file.wav");


现在获取文件路径的网址。...

10-06 03:47