你可以执行以下两项 *** 作之一:
getResources()并遍历返回的URL集合,将它们作为清单读取,直到找到你的URL:
Enumeration<URL> resources = getClass().getClassLoader() .getResources("meta-INF/MANIFEST.MF");while (resources.hasMoreElements()) { try { Manifest manifest = new Manifest(resources.nextElement().openStream()); // check that this is your manifest and do what you need or get the next one ... } catch (IOException E) { // handle }}
你可以尝试检查是否
getClass().getClassLoader()是的实例
java.net.URLClassLoader。Sun的大多数类加载器包括
AppletClassLoader。然后,你可以对其进行转换并调用findResource()已知的(至少对于applet而言)直接返回所需的清单:
URLClassLoader cl = (URLClassLoader) getClass().getClassLoader();try { URL url = cl.findResource("meta-INF/MANIFEST.MF"); Manifest manifest = new Manifest(url.openStream()); // do stuff with it ...} catch (IOException E) { // handle}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)