I have connected to my remote server via FTP and i put some zip file using following code.
channelSftp.cd(SFTPWORKINGDIR + "/" + remoteDestinationDir);
File file = new File(localSourceToFile);
LOG.info("Transferring file: " + localSourceToFile + " to "+ SFTPWORKINGDIR + "/" + remoteDestinationDir);
FileInputStream fis = new FileInputStream(file);
channelSftp.put(fis, file.getName());
fis.close();
LOG.info("Transfer successful");
Now, I want to unzip file on server
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…