Hello,

I am new for jackrabbit and I want to add a file and its content in
node,does anyone can let me know the step by step method(or sample code) to
add a file



        Node root = session.getRootNode();
         Node forFileNode = root.addNode("testNode");
         System.out.println("the value of node is
::::"+forFileNode.getName());
          Node resNode = forFileNode.addNode ("jcr:content", "nt:resource");
          resNode.setProperty ("jcr:mimeType", "text/plain");
             resNode.setProperty ("jcr:encoding", "utf8");
             resNode.setProperty("jcr:data", new FileInputStream(f));
             session.save();



I am able to create the node and able to see the added node in DAV explorer
but unable to create the file




Thanks in Advance

Reply via email to