I have added SVG path element into a nodelist and I can print out the length of the list. May I know how to access the path 'd' attribute of the node.
svgDoc = domObj.createDoc(f.toURL().toString()); NodeList svgPathList = svgDoc.getElementsByTagName("path");
I have already tried this but it doesn't work.
svgPathList.item(0).getNodeValue();