当前位置: 代码迷 >> Lotus >> 请教在JAVA里面如何写更新代码
  详细解决方案

请教在JAVA里面如何写更新代码

热度:166   发布时间:2016-05-05 07:01:22.0
请问在JAVA里面怎么写更新代码?
Document提供了更新的方法了的么,新人接触这个时间不长,也就会查询和添加。。


所以能有个例子更好了..谢谢各位了!!在线等!!

------解决方案--------------------
接分的..
DocumentCollection docs=d.getAllDocuments();
boolean b=false;
for (int i = 1; i <= docs.getCount(); i++) {
Document dd=docs.getNthDocument(i);
if(dd.getItemValueString("userName").equals("王新武")){
dd.remove(false);
b=true;
}
}
if(b==true){
System.out.println("删除成功");
}else{
S
  相关解决方案