2

我正在尝试在Alfresco的存储库中上传文件。

我正在使用适用于Android的 Alfresco Mobile SDK,该 SDK 有据可查且易于使用。

问题是我没有找到如何ContentFile从文件(我要上传的文件)创建对象,以便使用该方法:

public Document createDocument(Folder folder, String nameFile,
Map<String,Serializable> properties, ContentFile contentFile)

(这种方法效果很好,我可以创建一个没有内容的文件)。

我很确定这没什么大不了的,但我环顾四周,并没有设法找到我需要的东西。在此先感谢您的帮助。

ServiceRegistry serviceRegistry = Login.session.getServiceRegistry();
DocumentFolderService documentFolderService = 
    serviceRegistry.getDocumentFolderService();
Folder folder = (Folder) 
    documentFolderService.getNodeByIdentifier(repository.getIdentifier());

Map<String,Serializable> properties = new HashMap<String,Serializable>();

// here I would like to take the content from the fileFrom:
ContentFile contentFile = null; 

// fileFrom is a File object:
String nameFile = fileFrom.getName(); 

documentFolderService.createDocument(folder, nameFile, properties, contentFile);
4

1 回答 1

5

你应该使用这个ContentFileImpl类:

//...
String location = "..."; // wherever you have to point to
ContentFile contentFile = new ContentFileImpl(new File(location));
//...
于 2013-01-25T11:03:30.880 回答