如何使用cmis-api从Alfresco中的文档Id中获取文件夹详细信息



我有一个问题。如何使用cmis-api从alfresco中的文档Id中获取文件夹名称、Id等(文件夹详细信息)?有什么办法吗???感谢

这个更短:

// 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());

最后我得到了答案。。使用以下行。。

 ObjectData bindingParent=cmisSession.getBinding().getNavigationService().getFolderParent(cmisSession.getRepositoryInfo().getId(), doc.getId(), null, null);
System.out.println("n --> id "+ bindingParent.getId());

相关内容

  • 没有找到相关文章

最新更新