List of usage examples for com.lowagie.tools Executable openDocument
public static final Process openDocument(File file) throws IOException
From source file:radpharmadose.RadPharmaDoseMainWindow.java
public void PrintPDF(String fileName) { try {/*from w w w .ja va 2 s . c om*/ Executable ex = new Executable(); ex.openDocument(fileName); ex.printDocument(fileName); } catch (IOException e) { e.printStackTrace(); } }