2

我正在尝试使用 Apache Chemistry OpenCMIS 将文件上传到我的 Alfresco 存储库中。文件已创建且属性正确但没有内容,文件为 0 字节。我已经仔细检查过,源文件没有任何问题。这是我的Java代码:

File content = new File(somepath);
try{
                    String mimeType = new  MimetypesFileTypeMap().getContentType(content);
                    logger.debug("mimetype: " + mimeType);
                    logger.debug("file: " + content.getAbsolutePath());
                    Map<String, Object> properties = new HashMap<String, Object>();
                    properties.put(PropertyIds.OBJECT_TYPE_ID, BaseTypeId.CMIS_DOCUMENT.value());
                    properties.put(PropertyIds.NAME, content.getName());


                    FileInputStream fis = new FileInputStream(content);
                    DataInputStream dis = new DataInputStream(fis);
                    byte[] bytes = new byte[(int) content.length()];
                    dis.readFully(bytes);

                    ContentStream cs = new ContentStreamImpl(content.getName(), BigInteger.valueOf(bytes.length), mimeType, dis);
                    Folder folder = (Folder) session.getObjectByPath("/myfolder");
                    Document doc = folder.createDocument(properties, cs, VersioningState.MAJOR);
                    return doc.getId();
                }catch(CmisBaseException e){
                    logger.error("error uploading file: "+ e.getMessage(), e);
                }

没有捕获到异常。

4

2 回答 2

4

我认为您传递的内容流存在问题。

尝试用这个替换你的代码

String docText = "This is a sample document";
byte[] content = docText.getBytes();
InputStream stream = new ByteArrayInputStream(content);
ContentStream contentStream = getSession().getObjectFactory().createContentStream(filename, Long.valueOf(content.length), "text/plain", stream);

您可以在下一步中使用新文件中的内容逐渐更改此简单文本。

于 2013-04-19T05:43:10.387 回答
1

我正在寻找一个关于这个的例子,并找到了你的问题,如果我没记错的话,原来的问题是你正在预先读取缓冲区,所以当你将它传递给内容流时指针位于它的末尾,我正在制作一个小类,只是为了测试我以后想在程序中实现的一些功能,这个块适用于您的初始方法。

File content = new File("C:\\\\asdf.asdf");
    try{
        String mimeType = new  MimetypesFileTypeMap().getContentType(content);
        System.out.println("mimetype: " + mimeType);
        System.out.println("file: " + content.getAbsolutePath());
        Map<String, Object> properties = new HashMap<String, Object>();
        properties.put(PropertyIds.OBJECT_TYPE_ID,BaseTypeId.CMIS_DOCUMENT.value()+",P:cm:titled");
        properties.put("cm:description", "upload desde código");
        properties.put(PropertyIds.NAME, content.getName());
        FileInputStream fis = new FileInputStream(content); 
        DataInputStream dis = new DataInputStream(fis);                    
        ContentStream cs = new ContentStreamImpl(content.getName(),BigInteger.valueOf(content.length()), mimeType, dis);
        Document doc = newFolder.createDocument(properties, cs, VersioningState.MAJOR);
    }catch(CmisBaseException ex){
        Logger.getLogger(CMISTest.class.getName()).log(Level.SEVERE, null, ex);
    } catch (FileNotFoundException ex) {
        Logger.getLogger(CMISTest.class.getName()).log(Level.SEVERE, null, ex);
    } catch (IOException ex) {
        Logger.getLogger(CMISTest.class.getName()).log(Level.SEVERE, null, ex);
    }
于 2013-10-28T23:30:46.703 回答