bs下我们用的java代码导出notes数据到sql中,如何回收内存?
如题!我们的代码中没有加入java的内存回收机制,请问谁有这方面的java强制回收内存代码? --------------------编程问答-------------------- Recycle an object only if it is no longer needed --------------------编程问答-------------------- 你可以在finaly块里面写上清楚不用的实例的代码。 --------------------编程问答-------------------- All lotus.domino classes contain the following methods:public void recycle()
public void recycle(java.util.Vector objects)
For example:
View v1 = db.getView("All");
View v2 = db.getView("All");
v1.recycle(); // also recycles v2 --------------------编程问答-------------------- 楼上正解!
补充:企业软件 , Lotus