在动态环境中访问 JAR 的清单文件
从动态环境启动应用程序时,检索 JAR 的清单文件变得具有挑战性像小程序或网络启动。使用 getClass().getClassLoader().getResources(...) 的标准方法返回加载到运行时的第一个 JAR 中的清单,而不是托管目标类的 JAR。
为了克服这个问题,有两种方法可以探索:
1。迭代资源 URL:
迭代 getResources() 返回的 URL,将每个 URL 作为清单读取,直到找到所需的 URL。
Enumeration<URL> resources = getClass().getClassLoader() .getResources("META-INF/MANIFEST.MF"); while (resources.hasMoreElements()) { try { Manifest manifest = new Manifest(resources.nextElement().openStream()); // Check if it's the target manifest and perform necessary actions. } catch (IOException E) { // Handle exception. } }
2.利用 findResource 方法:
如果类加载器是 java.net.URLClassLoader 的实例(例如 AppletClassLoader),则对其进行强制转换并直接调用 findResource(),已知该方法会返回小程序的 Manifest .
URLClassLoader cl = (URLClassLoader) getClass().getClassLoader(); try { URL url = cl.findResource("META-INF/MANIFEST.MF"); Manifest manifest = new Manifest(url.openStream()); // Use the manifest. } catch (IOException E) { // Handle exception. }
以上是如何在动态环境中访问 JAR 的清单文件?的详细内容。更多信息请关注PHP中文网其他相关文章!