将加载的类保存到文件中

时间:2012-11-18 09:47:45

标签: java class reflection

是否可以将加载的类保存到文件中?

Class cc = Class.forName("projects.implementation.JBean");

或者,或许可以获得该课程的实际位置?

2 个答案:

答案 0 :(得分:1)

是的,您可以在Class.class实现Serializable接口时将序列化为文件并再次反序列化。

示例 -

Class Test{
    public static void main(String[] args) throws ClassNotFoundException {
        try {
            OutputStream file = new FileOutputStream("test.ser");
            OutputStream buffer = new BufferedOutputStream(file);
            ObjectOutput output = new ObjectOutputStream(buffer);
            try {
                Class cc = Class.forName("com.test.Test");
                System.out.println(cc);
                output.writeObject(cc);
            } finally {
                output.close();
            }
        } catch (IOException ex) {
            ex.printStackTrace();
        }
        try {
            // use buffering
            InputStream file = new FileInputStream("test.ser");
            InputStream buffer = new BufferedInputStream(file);
            ObjectInput input = new ObjectInputStream(buffer);
            try {
                // deserialize the class
                Class cc = (Class) input
                        .readObject();
                // display 
                System.out.println("Recovered Class: " + cc);
            } finally {
                input.close();
            }
        } catch (ClassNotFoundException ex) {
            ex.printStackTrace();
        } catch (IOException ex) {
            ex.printStackTrace();
        }

    }
    }

答案 1 :(得分:0)

在Java中序列化一个Class对象序列化只比该类的限定名称多。通过名称查找反序列化类时。

在一般情况下,我不认为一旦加载了类字定义(字节码)就可以获得对应的字节。 Java允许在运行时定义类,并且据我所知,在类加载后不会公开字节。

但是,根据使用的ClassLoader,您可能会发现

cc.getResourceAsStream("JBean.class")

就是您所需要的,使用自己的ClassLoader将类流加载为资源。

另一种选择可能是拦截课程的加载。 ClassLoader将看到“defineClass”中的字节,因此自定义ClassLoader可以将它们存储在某个地方。