10. สิ่งผิดปกติ

The Camtasia Studio video content presented here requires JavaScript to be enabled and the latest version of the Macromedia Flash Player. If you are you using a browser with JavaScript disabled please enable it now. Otherwise, please update your version of the free Flash Player by downloading here.

 
รหัสที่ 10-15  การเขียนคำสั่งปิดแฟ้มไว้ใน finally
    ...
    PdfReader in = null;
    PdfStamper out = null;
    try {
      in = new PdfReader(inFile);
      out = new PdfStamper(in, new FileOutputStream(outFile));
      ...
    } catch (FileNotFoundException e) {
      ...
    } catch (DocumentException e) {
      ...
    } catch (IOException e) {
      ...
    } finally {
      if (in  != null) in.close();
      if (out != null) out.close();
    }
©2009 S.Prasitjutrakul