我对 JCodeModel (SUN) 有疑问。我的程序每天都在运行,我想在当前运行之前创建的类中添加一些功能。
JcodeModel 支持这个吗?如果没有,有什么选项可以将 JCodemodel 对象保存在外部文件中,加载以前的 JcodeModel,然后添加新功能?
谢谢。
我对 JCodeModel (SUN) 有疑问。我的程序每天都在运行,我想在当前运行之前创建的类中添加一些功能。
JcodeModel 支持这个吗?如果没有,有什么选项可以将 JCodemodel 对象保存在外部文件中,加载以前的 JcodeModel,然后添加新功能?
谢谢。
您可以使用ObjectOutputStream将实例保存到文件中,然后使用 ObjectInputStream 读取和实例化它。只要您控制系统并且可以确保版本不会在一夜之间发生变化,这应该是安全的(尽管不寻常)。
本教程演示了如何使用它:
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();
}
}
}