我几乎"无处不在"地尝试搜索它,但找不到如何实现它的指针。请查看我的代码,并就如何使用OpenCMIS在SharePoint中设置/更新所有文档属性提供建议。已经使用CMIS成功地创建了文档,但是我无法为不同的文档填充不同的值。
例如,a.pdf和b.pdf具有不同的属性。因此,当我更新它们时,我希望值从分配给它们的值数组中映射出来,但目前,相同的值被附加到所有文档中。。。
请看下面的代码,希望它能让事情变得更清楚:
try {
String [] nextLine =null;
CSVReader reader = new CSVReader(new FileReader(indexFileLocation));
List content = reader.readAll();
for (Object o : content) {
nextLine = (String[]) o;
System.out.println("n"+ nextLine[2] + "n"+nextLine[7] + "n"+ nextLine[6]);
}
//reader.close();
Map <String, Object> newDocProps = new HashMap<String, Object>();
newDocProps.put(PropertyIds.OBJECT_TYPE_ID, "cmis:document");
newDocProps.put(PropertyIds.NAME, ff.getName());
Document doc = newFolder.createDocument(newDocProps, contentStream, VersioningState.NONE);
CmisObject cmisobject = (Document) session.getObject(doc.getId());
Map<String, Object> pp = new HashMap<String, Object>();
//pp.put(PropertyIds.OBJECT_ID, "Name");
pp.put("WorkflowNumber", nextLine[7]);
pp.put("InvoiceDate", nextLine[2]);
cmisobject.updateProperties(pp);
感谢您的帮助。
@Albert,您是如何创建会话的?这可能是会话创建的问题。请将您的代码粘贴到此处以创建会话。