Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
import com.jcraft.jsch.*;

public class App {
public static void main(String args[]) {
    JSch jsch = new JSch();
    Session session = null;
    try {
        session = jsch.getSession("Username", "Host", PORT NO);
        session.setConfig("StrictHostKeyChecking", "no");
        session.setPassword("Password");
        session.connect();

        Channel channel = session.openChannel("sftp");
        channel.connect();
        ChannelSftp sftpChannel = (ChannelSftp) channel;

        sftpChannel.get("remotefile.txt", "localfile.txt");
        sftpChannel.exit();
        session.disconnect();
    } catch (JSchException e) {
        e.printStackTrace(); 
    } catch (SftpException e) {
        e.printStackTrace();
    }
}

I dont want this sftpChannel.get("remotefile.txt", "localfile.txt");

I just want to create two methods 1)to copy the file from remote location to local system 2)to remove the copied file in an sftp connection

Can anyone help..

share|improve this question

2 Answers

Do a copy of the remote file and then delete it

ChannelSftp.get("remotefile.txt", "localfile.txt");
ChannelSftp.rm("remotefile.txt")
share|improve this answer
up vote -7 down vote accepted

i solved it .. i just used the built in functions..it's same as the ftp connection.. any way thnx

share|improve this answer
2  
Can you explain how you solved it? Thanks! – mona Aug 24 '11 at 18:55
1  
Now i have this problem, i wish you would of explained it – Michael Apr 17 '12 at 22:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.