gpt4 book ai didi

java - 如何判断一个资源文件是来自jar还是来自file?

转载 作者:太空宇宙 更新时间:2023-11-04 12:35:55 24 4
gpt4 key购买 nike

我想从类路径加载一个资源文件。该文件可能位于 jar 文件中或只是一个单独的文件。我怎么知道呢?谢谢

最佳答案

假设 MyClass 是同一个 ClassLoader 中的类,或者是包含资源文件的子 ClassLoader 中的类,这应该可以解决问题。

MyClass.class.getResourceAsStream("/path/to/my/resource")

Finds a resource with a given name. The rules for searching resources associated with a given class are implemented by the defining class loader of the class. This method delegates to this object's class loader. If this object was loaded by the bootstrap class loader, the method delegates to ClassLoader.getSystemResourceAsStream(java.lang.String).

更多详情here

上面的建议以 InputStream 的形式提供您的资源,如果您想将其作为 URL 使用 MyClass.class。 getResource("/path/to/my/resource") 相反

关于java - 如何判断一个资源文件是来自jar还是来自file?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37344654/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com