Skip to content

Instantly share code, notes, and snippets.

@rugi
Created September 2, 2013 02:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rugi/6408736 to your computer and use it in GitHub Desktop.
Save rugi/6408736 to your computer and use it in GitHub Desktop.
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.xhubacubi.jarhalla.client.util;
import java.io.IOException;
import java.net.URL;
import java.net.URLClassLoader;
import java.util.Enumeration;
import java.util.jar.JarEntry;
import java.util.jar.JarFile;
/**
*
* @author rugi
*/
public class ClassUtil {
public static ClassInfoUtil getClassInfoFromClassInJar(String pathToJar, String className_) throws IOException, ClassNotFoundException {
ClassInfoUtil res = null;
JarFile jarFile = new JarFile(pathToJar);
Enumeration e = jarFile.entries();
URL[] urls = {new URL("jar:file:" + pathToJar + "!/")};
URLClassLoader cl = URLClassLoader.newInstance(urls);
while (e.hasMoreElements()) {
JarEntry je = (JarEntry) e.nextElement();
if (je.isDirectory() || !je.getName().endsWith(".class")) {
continue;
}
String className = je.getName().substring(0, je.getName().length() - 6);
if (className.equals(className_.substring(0, className_.length() - 6))) {
res = new ClassInfoUtil();
className = className.replace('/', '.');
Class c = cl.loadClass(className);
res.setMethods(c.getDeclaredMethods());
res.setConstructors(c.getConstructors());
}
}
return res;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment