Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

java - Unzip file on SFTP Server

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It seems that ChannelSftp doesn't support executing commands on the server side. It mainly deals with the transfer of files. You can use ChannelExec https://epaul.github.io/jsch-documentation/simple.javadoc/com/jcraft/jsch/ChannelExec.html to execute unzip /path/to/uploaded/file.zip.

Alternatively, you could have a job running on the server side which watches the directory you upload files to and upzip any uploaded zip-files automatically.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...