Get File Out of JCR File Node

后端 未结 1 1279
渐次进展
渐次进展 2020-12-28 09:42

I have the following code to insert \"rose.gif\" into a roseNode. But how do I retrieve the file from the repository?

    Node roseNode = session.getRootNod         


        
相关标签:
1条回答
  • 2020-12-28 10:03

    The only thing you really need to do is get the name of the file from the name of the "nt:file" node, and the content for the file from the "jcr:data" property on the "jcr:content" child node.

    JCR 1.0 and 2.0 differ a bit in how you get the stream for the binary "jcr:data" property value. If you're using JCR 1.0, then the code would be like this:

    Node fileNode = // find this somehow
    Node jcrContent = fileNode.getNode("jcr:content");
    String fileName = fileNode.getName();
    InputStream content = jcrContent.getProperty("jcr:data").getStream();
    

    If you're using JCR 2.0, the last line is a bit different because you first have to get the Binary object from the property value:

    InputStream content = jcrContent.getProperty("jcr:data").getBinary().getStream();
    

    You can then use standard Java stream utility to write the bytes from the 'content' stream into the file.

    When you're done with the Binary object, be sure to call the Binary's dispose() method to tell signal that you're done with the Binary and that the implementation can release all resources acquired by the Binary object. You should always do this, even though some JCR implementations try to catch programming errors by returning a stream that, when closed, will automatically call dispose() for you.

    0 讨论(0)
提交回复
热议问题