我有一个问题。如何使用cmis api从alfresco中的文档ID获取文件夹名称,ID等...(文件夹详细信息)? 有什么办法吗? 感谢
答案 0 :(得分:2)
这个更短:
// get the first parent of the document
Folder parent = doc.getParents().get(0);
System.out.println("ID: "+ parent.getId());
System.out.println("Name: "+ parent.getName());
答案 1 :(得分:1)
最后我得到了答案......以下行......
ObjectData bindingParent=cmisSession.getBinding().getNavigationService().getFolderParent(cmisSession.getRepositoryInfo().getId(), doc.getId(), null, null);
System.out.println("\n --> id "+ bindingParent.getId());