예제 #1
0
 public VFSIndexOutput(FileObject file)
 {
     try
     {
         if (!file.exists())
             file.createFile();
         content = file.getContent().getRandomAccessContent();
     }
     catch (System.IO.IOException ioe)
     {
         throw ioe;
     }
     catch (Exception e)
     {
         throw e;
     }
 }