From 205f059ec5df1a24daa87f8563d2bbb99344ecf9 Mon Sep 17 00:00:00 2001 From: tspitzer Date: Tue, 17 Sep 2013 15:38:08 +0200 Subject: g --- Dozentenmodul/src/downloader/jschtest.java | 84 ++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 Dozentenmodul/src/downloader/jschtest.java (limited to 'Dozentenmodul/src/downloader/jschtest.java') diff --git a/Dozentenmodul/src/downloader/jschtest.java b/Dozentenmodul/src/downloader/jschtest.java new file mode 100644 index 00000000..83be7e03 --- /dev/null +++ b/Dozentenmodul/src/downloader/jschtest.java @@ -0,0 +1,84 @@ +package downloader; + +import java.io.File; +import java.io.FileInputStream; +import java.io.FileNotFoundException; +import java.util.Properties; + +import com.jcraft.jsch.ChannelSftp; +import com.jcraft.jsch.JSch; +import com.jcraft.jsch.JSchException; +import com.jcraft.jsch.Session; +import com.jcraft.jsch.SftpException; +import com.jcraft.jsch.UserInfo; + +public class jschtest { + + /** + * @param args + */ + public static void main(String[] args) { + File testfile=new File("C:\\Users\\tspitzer\\Documents\\201301_ws_win7_OPT_Apps_NC_Off2010.zip"); + try { + sftpFile(testfile, "fr-bwlehrpool-rw-admin" , "fefobu36", "bwsonas.lsdf.kit.edu", "/.mounts/bwlehrpool"); + } catch (FileNotFoundException | JSchException | SftpException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + System.out.println("Fertig"); + + } + + private static void sftpFile(File localFile, String username, String password, String hostname, String remoteDirectory) + throws JSchException, SftpException, FileNotFoundException { + + JSch jsch = new JSch(); + String filename = localFile.getName(); + Session session = jsch.getSession(username, hostname, 22); + session.setUserInfo(new HardcodedUserInfo(password)); + Properties config = new Properties(); + config.setProperty("StrictHostKeyChecking", "no"); + session.setConfig(config); + session.connect(); + ChannelSftp channel = (ChannelSftp)session.openChannel("sftp"); + channel.connect(); + channel.cd(remoteDirectory); + channel.put(new FileInputStream(localFile), filename); + channel.disconnect(); + session.disconnect(); + } + + private static class HardcodedUserInfo implements UserInfo { + + private final String password; + + private HardcodedUserInfo(String password) { + this.password = password; + } + + public String getPassphrase() { + return null; + } + + public String getPassword() { + return password; + } + + public boolean promptPassword(String s) { + return true; + } + + public boolean promptPassphrase(String s) { + return true; + } + + public boolean promptYesNo(String s) { + return true; + } + + public void showMessage(String s) { + System.out.println("message = " + s); + } + } + +} -- cgit v1.2.3-55-g7522