我正在为iNotes 8.5使用Lotus Domino Java API。我能够创建会议并为会议请求添加会议室和资源,并从我的Java程序发送给所有与会者。但是我在取消会议时遇到了问题:
当我取消会议时,日历条目将从日历中删除,但房间和资源正在释放。
以下是我要取消的内容: 选项1: 1.使用UNID从数据库中获取备注文档 2.删除文件
选项-2: 1.使用UNID从数据库中获取备注文档 2.从文档中删除房间和资源 3.保存文件 4.删除文件
使用上述两个选项后,我仍然看到资源没有被释放。有人可以帮我解决这个问题的解决方案或想法。
由于我无法以编程方式释放房间和资源,所以每次会议取消时我都会手动释放房间。
我正在使用的代码:
public boolean removeResources(Document d) throws Exception
{
if(null!= d.getItemValue("Room"))
d.removeItem("Room");
if(null!= d.getItemValue("RequiredResources"))
d.removeItem("RequiredResources");
return d.save(true);
}
答案 0 :(得分:0)
我不是Domino中C& E系统的专家,但是如果你需要从你正在编写的方法中删除文档中的字段,那么试试这个:
public boolean removeResources(Document d) throws NotesException
{
boolean bUpdated = false;
if(d.hasItem("Room")) {
d.removeItem("Room");
bUpdated=true;
}
if(d.hasItem("RequiredResources")) {
d.removeItem("RequiredResources");
bUpdated=true;
}
if (bUpdated) {
// something changed, so commit to document (d)
if (d.save(true)) {
return true;
} else {
return false;
}
}else {
// no changes therefore no resources were in the document, so return true anyway
return true;
}
}