首页 > 代码库 > 类加载
类加载
所有类加载器,都是ClassLoader的子类。类加载器永远以.class运行的目录为准。
在Java项目中可以通过以下方式获取classspath下的文件
1 public static void main(String[] args) {2 ClassLoader loader=Loader.class.getClassLoader();3 System.err.println(loader);4 String path =loader.getResource("a.txt").getPath();5 System.err.println(path);6 System.err.println("=============================");7 path= ClassLoader.getSystemResource("a.txt").getPath();8 System.err.println(path);9 }
在Tomcat中tomcat又声明了两个类载器:
StandardClassLoader– 加载tomcat/lib/*.jar - serlvetapi.jar
Webappclassloader /加载 tomcat/webapps/project/web-inf/lib/*.jar && web-inf/classes/*.class
1 ClassLoader loader=LoaderServlet.class.getClassLoader();2 System.err.println(loader);3 String path= loader.getResource("a.txt").getPath();4 System.err.println(path);5 System.err.println("===================");6 //path= ClassLoader.getSystemResource("a.txt").getPath();7 System.err.println(path);
在任何的项目中,获取类的加载器都应该使用以下方式:
SomeClass(你写的).class.getClassLoader().getResource ;获取到这个类的类加载器
在java项目中是:AppClassLoader
在Web项目中:WebAppClassLoader
测试父类加载器:
1 ClassLoader loader = OneServlet.class.getClassLoader();//WebAppClassLoader2 int index=1;3 while(loader!=null){4 System.err.println((index++)+"类加载器是:"+loader.getClass());
loader=loader.getParent();//获取父类加载器
自定义类加载器:
public class MyClassLoader2 extends ClassLoader { /** * name:cn.itcast.demo.Person * 根据包名找到.class文件 * cn.itcast.demo.person = > cn/itcast/demo/Person.class */ public Class<?> findClass(String name) throws //name接受类名ClassNotFoundException { String classNameWithPackage=name; Class<?> cls = null; try { //先将 name = name.replace(".","/");//处理成路径名 name +=".class"; //确定目录 URL url = MyClassLoader2.class.getClassLoader().getResource(name); System.err.println(">>:"+url.getPath()); File file = new File(url.getPath()); InputStream in = new FileInputStream(file); //读取这个.class文件的字节码 byte[] b = new byte[in.available()];//直接声明这个字节大小为这个文件的大小 int len = in.read(b);//len=621 System.err.println(len); /** * 第一个参数是类名 */ cls = defineClass(classNameWithPackage,b,0,len); } catch (Exception e) { e.printStackTrace(); } return cls; }}测试类自定义类加载器“public class ClassLoaderDemo { public static void main(String[] args) throws Exception { MyClassLoader2 mc = new MyClassLoader2(); Class cls = mc.findClass("cn.itcast.demo.Person"); Object o = cls.newInstance(); System.err.println("toString:"+o+","+o.getClass().getClassLoader()); //直接使用peron是 AppClassLoader System.err.println(">>:"+Person.class.getClassLoader()); //由于o是由mc加载的。而Person是由App加载的,所有不可以转换=来自于两个不同的加载器 //Person p = (Person) o;//类型转换错误ClassCastException //System.err.println(p); }}
类加载
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。