Views
Replies
Total Likes
Hi,
You can read the data without subservice if user has access to that node.
Although you need jcrsession or resourceresolver to read the node.you can get this from request object.
Display binary data in readable fromat is totally depends on what kind of data is stored in the node. if it is json you can see but if the format is something else then you need those applications to see that data in readable format
check this https://www.bhasaka.com/write-read-binary-data-into-from-jcr-node/
HI @arunpatidar Thanks
Is there any to get this without resourceresolver.
Is there any way to encode the binary data to readable text.
Hi,
You can read the data without subservice if user has access to that node.
Although you need jcrsession or resourceresolver to read the node.you can get this from request object.
Display binary data in readable fromat is totally depends on what kind of data is stored in the node. if it is json you can see but if the format is something else then you need those applications to see that data in readable format
Hi @akshaybhujbale ,
You can try below snippet
ValueMap properties = currentPage.getProperties(); data = IOUtils.toString(properties.get(“jcr:data”, InputStream.class), “UTF-8”);
Hope this helps!!
Thanks