当前位置:   article > 正文

java自学day4-JVM核心机制-自定义文件类加载器

java自学day4-JVM核心机制-自定义文件类加载器

自定义文件类加载器

package cn.xqh.reflection;

import java.io.ByteArrayOutputStream;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;

public class FileSystemClassLoader extends java.lang.ClassLoader{
	
	private String rootdir;
	
	public FileSystemClassLoader(String rootdir) {
		this.rootdir=rootdir;
	}
	
	@Override
	protected Class<?> findClass(String name) throws ClassNotFoundException {
		Class c = findLoadedClass(name);
		if(null!=c) {
			return c;
		}else {
			ClassLoader parent = this.getParent();
			try {
				c = parent.loadClass(name);
			} catch (Exception e) {
			
			}
			if(null!=c) {
				return c;
			}else {
				byte[] b =getclassdata(name);
				if(null==b) {
					throw new ClassNotFoundException();
				}else {
					c = defineClass(name, b, 0, b.length);
					return c;
				}
			}
		}
	}
	
	private byte[] getclassdata(String name) {
		String path = rootdir + "/"+ name.replace(".", "/")+".class";
		InputStream is = null;
		ByteArrayOutputStream bos = new ByteArrayOutputStream();		
		
		try {
			is = new FileInputStream(path);
			byte[] car = new byte[1024];
			int temp = 0;
			while((temp=is.read(car))!=-1) {
				bos.write(car, 0, temp);
			}
			return bos.toByteArray();
	
		} catch (Exception e) {
			e.printStackTrace();
			return null;
		}finally {
			if(is!=null) {
				try {
					is.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
		}
		
	}
}



  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/207159
推荐阅读
相关标签
  

闽ICP备14008679号