This example displays the path of the presentation.
try { Application application = Application.getInstance(); Presentations presentations = application.getPresentations(); Presentation presentation = presentations.openPresentation("D:\\FileTypeAssociation\\test.odp", true); System.out.println(presentation.getPath()); } catch(Exception e) { e.printStackTrace(); }
Related information