web-dev-qa-db-ja.com

scp via java

Javaプログラミング言語を介してscp転送を実行する最良の方法は何ですか? JSSE、JSch、または弾力のある城Javaライブラリを介してこれを実行できる可能性があるようです。これらの解決策のどれも、簡単な答えを持っているようには見えません。

73
Lloyd Meinholz

最終的に Jsch -を使用しましたが、これは非常に簡単で、かなりうまくスケールアップしたようです(数分ごとに数千のファイルを取得していました)。

52
Tim Howland

プラグイン:sshjが唯一の正気な選択です!開始するには、次の例を参照してください: downloadpload

20
shikhar

ご覧ください こちら

これがアリのSCPタスクのソースコードです。 「実行」メソッドのコードは、その要点です。これにより、何が必要であるかについて公平な考えが得られるはずです。私は信じているJSchを使用しています。

または、JavaコードからこのAntタスクを直接実行することもできます。

16
abarax

Jschをいくつかのユーティリティメソッドでラップして少し使いやすくし、呼び出しました

JSCP

ここで利用可能: https://github.com/willwarren/jscp

SCPユーティリティーは、フォルダーをtarし、zip圧縮し、どこかでscpしてから、解凍します。

使用法:

// create secure context
SecureContext context = new SecureContext("userName", "localhost");

// set optional security configurations.
context.setTrustAllHosts(true);
context.setPrivateKeyFile(new File("private/key"));

// Console requires JDK 1.7
// System.out.println("enter password:");
// context.setPassword(System.console().readPassword());

Jscp.exec(context, 
           "src/dir",
           "destination/path",
           // regex ignore list 
           Arrays.asList("logs/log[0-9]*.txt",
           "backups") 
           );

便利なクラスも含まれています-Scp and Exec、およびTarAndGzip、ほぼ同じ方法で動作します。

6
Will

これは高レベルのソリューションであり、再発明する必要はありません。早くて汚い!

1)まず、 http://ant.Apache.org/bindownload.cgi にアクセスして、最新のApache Antバイナリをダウンロードします。 (現在、Apache-ant-1.9.4-bin.Zip)。

2)ダウンロードしたファイルを抽出し、JARを見つけますant-jsch.jar(「Apache-ant-1.9.4/lib/ant-jsch.jar」)。 このJARをプロジェクトに追加します。また、ant-launcher.jarおよびant.jar。

3)Jcraft jsch SouceForge Project に移動して、jarをダウンロードします。最近では、 jsch-0.1.52.jar 。また、プロジェクトにこのJARを追加します

これで、ネットワーク経由でファイルをコピーするためにJavaコードをAntクラスScpに簡単に使用できますか、またはSSHExecSSHサーバーのコマンド用。

4)コード例Scp:

// This make scp copy of 
// one local file to remote dir

org.Apache.tools.ant.taskdefs.optional.ssh.Scp scp = new Scp();
int portSSH = 22;
String srvrSSH = "ssh.your.domain";
String userSSH = "anyuser"; 
String pswdSSH = new String ( jPasswordField1.getPassword() );
String localFile = "C:\\localfile.txt";
String remoteDir = "/uploads/";

scp.setPort( portSSH );
scp.setLocalFile( localFile );
scp.setTodir( userSSH + ":" + pswdSSH + "@" + srvrSSH + ":" + remoteDir );
scp.setProject( new Project() );
scp.setTrust( true );
scp.execute();
4
Fernando Santos

openssh project は、いくつかのJava代替案、 Trilead SSH for Java はあなたが求めているものに合うようです。

3
Kyle Burton

私はこれらのソリューションの多くを見て、それらの多くが好きではありませんでした。主に、既知のホストを特定する必要があるという面倒なステップが原因です。それとJSCHはscpコマンドに比べて途方もなく低いレベルです。

これを必要としないライブラリが見つかりましたが、バンドルされており、コマンドラインツールとして使用されています。 https://code.google.com/p/scp-Java-client/

ソースコードに目を通し、コマンドラインなしで使用する方法を発見しました。アップロードの例を次に示します。

    uk.co.marcoratto.scp.SCP scp = new uk.co.marcoratto.scp.SCP(new uk.co.marcoratto.scp.listeners.SCPListenerPrintStream());
    scp.setUsername("root");
    scp.setPassword("blah");
    scp.setTrust(true);
    scp.setFromUri(file.getAbsolutePath());
    scp.setToUri("root@Host:/path/on/remote");
    scp.execute();

最大の欠点は、Mavenリポジトリにないことです(見つけることができます)。しかし、使いやすさは私にとって価値があります。

2
Daniel Kaplan

Zehonと呼ばれるSCPを持つこのSFTP APIを使用します。これは素晴らしいため、多くのサンプルコードで簡単に使用できます。こちらがサイトです http://www.zehon.com

2
bigjavageek

ここにあるもののように、私はJSchライブラリーのラッパーを書くことになりました。

これはway-secshellと呼ばれ、GitHubでホストされます。

https://github.com/objectos/way-secshell

// scp myfile.txt localhost:/tmp
File file = new File("myfile.txt");
Scp res = WaySSH.scp()
  .file(file)
  .toHost("localhost")
  .at("/tmp")
  .send();
1
user717263

JSchは、動作する素敵なライブラリです。あなたの質問に対する非常に簡単な答えがあります。

JSch jsch=new JSch();
  Session session=jsch.getSession(user, Host, 22);
  session.setPassword("password");


  Properties config = new Properties();
  config.put("StrictHostKeyChecking","no");
  session.setConfig(config);
  session.connect();

  boolean ptimestamp = true;

  // exec 'scp -t rfile' remotely
  String command="scp " + (ptimestamp ? "-p" :"") +" -t "+rfile;
  Channel channel=session.openChannel("exec");
  ((ChannelExec)channel).setCommand(command);

  // get I/O streams for remote scp
  OutputStream out=channel.getOutputStream();
  InputStream in=channel.getInputStream();

  channel.connect();

  if(checkAck(in)!=0){
    System.exit(0);
  }

  File _lfile = new File(lfile);

  if(ptimestamp){
    command="T "+(_lfile.lastModified()/1000)+" 0";
    // The access time should be sent here,
    // but it is not accessible with JavaAPI ;-<
    command+=(" "+(_lfile.lastModified()/1000)+" 0\n");
    out.write(command.getBytes()); out.flush();
    if(checkAck(in)!=0){
      System.exit(0);
    }
  }

完全なコードは以下で見つけることができます

http://faisalbhagat.blogspot.com/2013/09/Java-uploading-file-remotely-via-scp.html

0
faisalbhagat

JSch を使用してファイルをアップロードする例を次に示します。

ScpUploader.Java

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 Java.io.ByteArrayInputStream;
import Java.util.Properties;

public final class ScpUploader
{
    public static ScpUploader newInstance()
    {
        return new ScpUploader();
    }

    private volatile Session session;
    private volatile ChannelSftp channel;

    private ScpUploader(){}

    public synchronized void connect(String Host, int port, String username, String password) throws JSchException
    {
        JSch jsch = new JSch();

        Properties config = new Properties();
        config.put("StrictHostKeyChecking", "no");

        session = jsch.getSession(username, Host, port);
        session.setPassword(password);
        session.setConfig(config);
        session.setInputStream(System.in);
        session.connect();

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

    public synchronized void uploadFile(String directoryPath, String fileName, byte[] fileBytes, boolean overwrite) throws SftpException
    {
        if(session == null || channel == null)
        {
            System.err.println("No open session!");
            return;
        }

        // a workaround to check if the directory exists. Otherwise, create it
        channel.cd("/");
        String[] directories = directoryPath.split("/");
        for(String directory : directories)
        {
            if(directory.length() > 0)
            {
                try
                {
                    channel.cd(directory);
                }
                catch(SftpException e)
                {
                    // swallowed exception

                    System.out.println("The directory (" + directory + ") seems to be not exist. We will try to create it.");

                    try
                    {
                        channel.mkdir(directory);
                        channel.cd(directory);
                        System.out.println("The directory (" + directory + ") is created successfully!");
                    }
                    catch(SftpException e1)
                    {
                        System.err.println("The directory (" + directory + ") is failed to be created!");
                        e1.printStackTrace();
                        return;
                    }

                }
            }
        }

        channel.put(new ByteArrayInputStream(fileBytes), directoryPath + "/" + fileName, overwrite ? ChannelSftp.OVERWRITE : ChannelSftp.RESUME);
    }

    public synchronized void disconnect()
    {
        if(session == null || channel == null)
        {
            System.err.println("No open session!");
            return;
        }

        channel.exit();
        channel.disconnect();
        session.disconnect();

        channel = null;
        session = null;
    }
}

AppEntryPoint.Java

import com.jcraft.jsch.JSchException;
import com.jcraft.jsch.SftpException;

import Java.io.IOException;
import Java.nio.file.Files;
import Java.nio.file.Paths;

public final class AppEntryPoint
{
    private static final String Host = "192.168.1.1";
    private static final int PORT = 22;
    private static final String USERNAME = "root";
    private static final String PASSWORD = "root";

    public static void main(String[] args) throws IOException
    {
        ScpUploader scpUploader = ScpUploader.newInstance();

        try
        {
            scpUploader.connect(Host, PORT, USERNAME, PASSWORD);
        }
        catch(JSchException e)
        {
            System.err.println("Failed to connect the server!");
            e.printStackTrace();
            return;
        }

        System.out.println("Successfully connected to the server!");

        byte[] fileBytes = Files.readAllBytes(Paths.get("C:/file.Zip"));

        try
        {
            scpUploader.uploadFile("/test/files", "file.Zip", fileBytes, true); // if overwrite == false, it won't throw exception if the file exists
            System.out.println("Successfully uploaded the file!");
        }
        catch(SftpException e)
        {
            System.err.println("Failed to upload the file!");
            e.printStackTrace();
        }

        scpUploader.disconnect();
    }
}
0
Eng.Fouad

他のものよりもはるかに簡単なscpサーバーを作成しました。 Apache MINAプロジェクト(Apache SSHD)を使用して開発しています。こちらをご覧ください: https://github.com/boomz/JSCP また、/jarディレクトリからjarファイルをダウンロードできます。使い方?ご覧ください: https://github.com/boomz/JSCP/blob/master/src/Main.Java

0
boomz

jsCHは私にとって素晴らしい仕事をしてくれました。以下は、sftpサーバーに接続し、指定されたディレクトリにファイルをダウンロードする方法の例です。 StrictHostKeyCheckingを無効にしないことをお勧めします。設定が少し難しくなりますが、セキュリティ上の理由から、既知のホストを指定するのが一般的です。

jsch.setKnownHosts( "C:\ Users\test\known_hosts");推奨

JSch.setConfig( "StrictHostKeyChecking"、 "no");-非推奨

import com.jcraft.jsch.*;
 public void downloadFtp(String userName, String password, String Host, int port, String path) {


        Session session = null;
        Channel channel = null;
        try {
            JSch ssh = new JSch();
            JSch.setConfig("StrictHostKeyChecking", "no");
            session = ssh.getSession(userName, Host, port);
            session.setPassword(password);
            session.connect();
            channel = session.openChannel("sftp");
            channel.connect();
            ChannelSftp sftp = (ChannelSftp) channel;
            sftp.get(path, "specify path to where you want the files to be output");
        } catch (JSchException e) {
            System.out.println(userName);
            e.printStackTrace();


        } catch (SftpException e) {
            System.out.println(userName);
            e.printStackTrace();
        } finally {
            if (channel != null) {
                channel.disconnect();
            }
            if (session != null) {
                session.disconnect();
            }
        }

    }
0
Eduardo Dennis

さまざまなソリューションを試した後、フォルダーを再帰的にコピーする必要があり、最終的にProcessBuilder + expect/spawnになります

scpFile("192.168.1.1", "root","password","/tmp/1","/tmp");

public void scpFile(String Host, String username, String password, String src, String dest) throws Exception {

    String[] scpCmd = new String[]{"expect", "-c", String.format("spawn scp -r %s %s@%s:%s\n", src, username, Host, dest)  +
            "expect \"?assword:\"\n" +
            String.format("send \"%s\\r\"\n", password) +
            "expect eof"};

    ProcessBuilder pb = new ProcessBuilder(scpCmd);
    System.out.println("Run Shell command: " + Arrays.toString(scpCmd));
    Process process = pb.start();
    int errCode = process.waitFor();
    System.out.println("Echo command executed, any errors? " + (errCode == 0 ? "No" : "Yes"));
    System.out.println("Echo Output:\n" + output(process.getInputStream()));
    if(errCode != 0) throw new Exception();
}
0
Burt