我遇到了JCodeModel(SUN)的问题。我的程序每天都在运行,我想添加一些函数给在当前运行之前创建的类。
JcodeModel支持这个吗?如果没有,有任何选项可以将JCodemodel对象保存在外部文件中,加载以前的JcodeModel,然后添加新函数吗?
感谢。
答案 0 :(得分:0)
您可以使用ObjectOutputStream将实例保存到文件,然后使用ObjectInputStream进行读取和实例化。只要您控制系统并确保版本不会在一夜之间发生变化,这应该是安全的(尽管不常见)。
This tutorial演示了如何使用它:
import java.io.*;
public class ObjectOutputStreamDemo {
public static void main(String[] args) {
String s = "Hello world!";
int i = 897648764;
try {
// create a new file with an ObjectOutputStream
FileOutputStream out = new FileOutputStream("test.txt");
ObjectOutputStream oout = new ObjectOutputStream(out);
// write something in the file
oout.writeObject(s);
oout.writeObject(i);
// close the stream
oout.close();
// create an ObjectInputStream for the file we created before
ObjectInputStream ois =
new ObjectInputStream(new FileInputStream("test.txt"));
// read and print what we wrote before
System.out.println("" + (String) ois.readObject());
System.out.println("" + ois.readObject());
} catch (Exception ex) {
ex.printStackTrace();
}
}
}