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