所以我正在制作一个 javafx Media 类的新实例。
new Media("file://" + <path>);
我遇到的问题是我需要创建 Eclipse 中附加的类文件夹(“/music/launcher.wav”)的路径。我可以使用以下命令让它在 Eclipse 中工作:
this.getClass().getProtectionDomain().getCodeSource().getLocation().getPath()
方法,然后添加 .replaceAll("/bin/com/faris/game", "") 但这只是 Eclipse Debug 的修复,而不是实际导出的 jar 文件。如何在导出的 jar 文件中获取类文件夹的位置。