欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

java读取JAR包中的文件

程序员文章站 2022-01-20 23:11:07
...
      
	public static URL getURLForJarPath(String path) throws MalformedURLException{
		File file = new File(path);
		if((path.endsWith("jar") || path.endsWith("JAR")) && file.exists()){
			return new URL("jar:file:/"+path+"!/TEST.xml");
		}else{
			throw new Exception(path+"路径不是jar文件");
		}
	}

 

相关标签: Jar