Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想AudioClip从URL代表文件的 a 创建一个。我知道如果音频文件与类在同一个文件夹中,我可以使用class_name.getResource(String filename), 然后使用Applet.newAudioClip()为 的创建音频剪辑URL,但是文件在不同的文件夹中是什么?
AudioClip
URL
class_name.getResource(String filename)
Applet.newAudioClip()
如果文件在您项目的存档中,您可以使用它ClassLoader来获取资源。 文件应该在存档的根目录中,或者在 META-INF 目录中
ClassLoader
java.lang.ClassLoader.getResource(String name);