6566676869707172
public OutputStream getOutputStream() { try { return new FileOutputStream(file); } catch (FileNotFoundException e) { throw new ResourceNotFoundException(e); } }
6364656667686970717273
SftpATTRS stat; try { stat = channel.stat(uri.getPath()); } catch (SftpException e) { throw new ResourceNotFoundException(e); } return new SshResource(this, channel, uri, stat); } catch (RuntimeException e) { throw e;