/**
* 获取jar 中的文件
* @param fileName
* @return
*/
private File getJarDocFIle(String fileName){
InputStream stream = getClass().getClassLoader().getResourceAsStream("doc/"+fileName);
File targetFile = new File(fileName);
try {
FileUtils.copyInputStreamToFile(stream, targetFile);
} catch (IOException e) {
e.printStackTrace();
}
return targetFile;
}
获取jar包下的根目录
最新推荐文章于 2024-10-25 16:06:32 发布