我想读取位于jar包括在我的课堂路径中。如何读取包含在jar?如何用Java从JAR读取文件?
3 回答
POPMUISE
TA贡献1765条经验 获得超5个赞
InputStream input = getClass().getResourceAsStream("/classpath/to/my/file");
慕虎7371278
TA贡献1802条经验 获得超4个赞
ClassLoader classLoader = Thread.currentThread().getContextClassLoader();if (classLoader == null) { classLoader = Class.class.getClassLoader();}classLoader.getResourceAsStream("xmlFileNameInJarFile.xml");// xml file location at xxx.jar// + folder// + folder// xmlFileNameInJarFile.xml
添加回答
举报
0/150
提交
取消