/**
  * Druckt die file.
  *
  * @throws PrinterException the printer exception
  * @throws IOException Signals that an I/O exception has occurred.
  */
 public void printFile() throws PrinterException, IOException {
   fph = new FilePrintHelper();
   in = new RandomAccessFile(schreibeTempDatei(), "r");
   pjob.print();
   in.close();
 }