备忘:UID

来源:互联网 发布:vmware mac dmg 编辑:程序博客网 时间:2024/05/16 08:12

URL url = new URL("file:" + file);
URLClassLoader cl = new URLClassLoader(new URL[] { url });
JarFile jf = new JarFile(file);
Enumeration<JarEntry> entrys = jf.entries();
Map<String, String> map = new TreeMap<String, String>();
while (entrys.hasMoreElements()) {
 JarEntry jar = entrys.nextElement();
 
 if (jar.getName().endsWith(".class")) {
  String className = jar.getName().replace("/", ".").substring(0, jar.getName().length() - 6);
  Class clazz = null

 

Class[] cls = clazz.getInterfaces();;


for (Class temp : cls) {
   if (temp.getName().equals(“java.io.Serializable”)) {
    Field f = null;


Field f = null;
try {  f = className.getDeclaredField(“serialVersionUID”);