How to get the reference to xml for each slide so that i can use my own logic to manipulate those xmls. suppose, my pptx has three slides, so i will be having three xmls /ppt/slides/slide1.xml, ..2.xml and ..3.xml. I had written a code PresentationMLPackage pMlPackage = PresentationMLPackage.load(new File("C:/simple.pptx"));
Parts parts = pMlPackage.getParts();
Map<PartName,Part> allPartsMap = parts.getParts();
for(PartName partName:allPartsMap.keySet())
{
if(partName.getName().contains("/ppt/slides/"))
{
SlidePart slidePart = (SlidePart)allPartsMap.get(partName);
// here i want to get the xmls to ...