2122232425262728293031
FileUtils.checkFileExists(getInternalFile()); try { return new FileInputStream(getInternalFile()); } catch (IOException e) { throw new NetfeverException( new FaultDetails( null, 0, e.getMessage(), "Fail to open file " +
4041424344454647484950
@Override public OutputStream openWrite() throws NetfeverException { try { return new FileOutputStream(getInternalFile()); } catch (IOException e) { throw new NetfeverException( new FaultDetails( null, 0, e.getMessage(), "Fail to open file " +
103104105106107108109110111112113
} finally { in.close(); } return storage; } catch (Exception e) { throw new NetfeverException( new FaultDetails( null, -1, e.getMessage(), null,