最近有一个需求就是从指定路径下加载jar中或者指定路径下class文件到虚拟机中供SpringIoc 容器动态注入。
寻找了一些资料并将成果分享出来
从jar 中加载class文件示例
public static void searchClass(String filePath) throws MalformedURLException, NoSuchMethodException {
// 系统类库路径
File libPath = new File(filePath);
// 获取所有的.jar和.zip文件
File[] jarFiles = libPath.listFiles(new FilenameFilter() {
@Override
public boolean accept(File dir, String name) {
return name.endsWith(".jar") || name.endsWith(".zip");
}
});
if (jarFiles != null) {
// 从URLClassLoader类中获取类所在文件夹的方法
// 对于jar文件,可以理解为一个存放class文件的文件夹
Method method = URLClassLoader.class.getDeclaredMethod("addURL", URL.class);
// 获取方法的访问权限
boolean accessible = method.isAccessible();
try {
// 设置方法的访问权限
if (accessible == false) {
method.setAccessible(true);
}
// 获取系统类加载器
URLClassLoader classLoader = (URLClassLoader) ClassLoader.getSystemClassLoader();
for (File file : jarFiles) {
URL url = file.toURI().toURL();
try {
method.invoke(classLoader, url);
log.debug("读取jar文件[name={}]", file.getName());
} catch (Exception e) {
log.error("读取jar文件[name={}]失败", file.getName());
}
}
} finally {
method.setAccessible(accessible);
}
}
}
从指定路径下获取class类文件
/**
* 加载指定路径下所有Class文件
* @param classPath
*/
public static void searchClassInPath(String classPath) throws NoSuchMethodException, MalformedURLException {
// 设置class文件所在根路径
// 例如/usr/java/classes下有一个test.App类,则/usr/java/classes即这个类的根路径,
// 而.class文件的实际位置是/usr/java/classes/test/App.class
File clazzPath = new File(classPath);
// 记录加载.class文件的数量
int clazzCount = 0;
if (clazzPath.exists() && clazzPath.isDirectory()) {
// 获取路径长度
int clazzPathLen = clazzPath.getAbsolutePath().length() + 1;
Stack<File> stack = new Stack<>();
stack.push(clazzPath);
// 遍历类路径
while (stack.isEmpty() == false) {
File path = stack.pop();
File[] classFiles = path.listFiles(new FileFilter() {
@Override
public boolean accept(File pathname) {
return pathname.isDirectory() || pathname.getName().endsWith(".class");
}
});
for (File subFile : classFiles) {
if (subFile.isDirectory()) {
stack.push(subFile);
} else {
if (clazzCount++ == 0) {
Method method = URLClassLoader.class.getDeclaredMethod("addURL", URL.class);
boolean accessible = method.isAccessible();
try {
if (accessible == false) {
method.setAccessible(true);
}
// 设置类加载器
URLClassLoader classLoader = (URLClassLoader) ClassLoader.getSystemClassLoader();
// 将当前类路径加入到类加载器中
method.invoke(classLoader, clazzPath.toURI().toURL());
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
} finally {
method.setAccessible(accessible);
}
}
// 文件名称
String className = subFile.getAbsolutePath();
className = className.substring(clazzPathLen, className.length() - 6);
className = className.replace(File.separatorChar, '.');
// 加载Class类
try {
Class.forName(className);
} catch (ClassNotFoundException e) {
log.error("ClassNotFoundException {}",e);
}
log.info("读取应用程序类文件[class={}]", className);
}
}
}
}
}
加载指定路径下Class类文件
/**
* 加载指定类路径下指定文件名
* @param classPath
*/
public static void searchClassByClassName(String classPath,String fullClassName) throws NoSuchMethodException, MalformedURLException {
// 设置class文件所在根路径
// 例如/usr/java/classes下有一个test.App类,则/usr/java/classes即这个类的根路径,
// 而.class文件的实际位置是/usr/java/classes/test/App.class
File clazzPath = new File(classPath);
// 记录加载.class文件的数量
int clazzCount = 0;
if (clazzPath.exists() && clazzPath.isDirectory()) {
// 获取路径长度
int clazzPathLen = clazzPath.getAbsolutePath().length() + 1;
Stack<File> stack = new Stack<>();
stack.push(clazzPath);
// 遍历类路径
while (stack.isEmpty() == false) {
File path = stack.pop();
File[] classFiles = path.listFiles(new FileFilter() {
@Override
public boolean accept(File pathname) {
return pathname.isDirectory() || pathname.getName().endsWith(".class");
}
});
for (File subFile : classFiles) {
if (subFile.isDirectory()) {
stack.push(subFile);
} else {
if (clazzCount++ == 0) {
Method method = URLClassLoader.class.getDeclaredMethod("addURL", URL.class);
boolean accessible = method.isAccessible();
try {
if (accessible == false) {
method.setAccessible(true);
}
// 设置类加载器
URLClassLoader classLoader = (URLClassLoader) ClassLoader.getSystemClassLoader();
// 将当前类路径加入到类加载器中
method.invoke(classLoader, clazzPath.toURI().toURL());
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
} finally {
method.setAccessible(accessible);
}
}
// 文件名称
String className = subFile.getAbsolutePath();
className = className.substring(clazzPathLen, className.length() - 6);
className = className.replace(File.separatorChar, '.');
// 加载Class类
try {
if (className.equals(fullClassName)){
Class.forName(className);
break;
}
} catch (ClassNotFoundException e) {
log.error("ClassNotFoundException {}",e);
}
log.info("读取应用程序类文件[class={}]", className);
}
}
}
}
}
参考文献:https://blog.csdn.net/mousebaby808/article/details/31788325