6

我正在尝试在私钥身份验证后使用 JSch 库将文件上传到 sftp 服务器。但是 put,mkdir 等操作会抛出失败消息。我尝试了几种方法,确定它看起来像 JSch 中的一个问题,有人遇到过这个问题吗?

相同的代码(mkdir,put)非常适合非私钥(用户名/密码)身份验证。请你帮助我好吗。sftpChannel.ls 也在使用私钥方法。

我的代码:

    JSch jsch = new JSch();

    Session session = null;
    if (privateKey != null||"".equals(privateKey)) {
        jsch.addIdentity(privateKey);
    }

    session = jsch.getSession(userName, hostAddress, port);
    session.setConfig("StrictHostKeyChecking", "no");
    if(password!=null||"".equals(password)){
         session.setPassword(password);
    }

    session.connect();
    Channel channel = null;
    if (sftp) {
        channel = session.openChannel("sftp");
    } else {
        channel = session.openChannel("ftp");
    }
    session.setServerAliveInterval(92000);
    channel.connect();
    ChannelSftp sftpChannel = (ChannelSftp) channel;

 // sftpChannel.put(new FileInputStream(new File(path)), remotePath  );
//         final Vector files = sftpChannel.ls(".");
//        for (Object obj : files) {
//            System.out.println("f:"+obj);
//        }
    sftpChannel.exit();
    session.disconnect();

Exception in thread "main" 4: Failure
at com.jcraft.jsch.ChannelSftp.throwStatusError(ChannelSftp.java:2297)
at com.jcraft.jsch.ChannelSftp.mkdir(ChannelSftp.java:1708)
at zz.beans.RemoteExportBean.exportToFTP(RemoteExportBean.java:52)
at zz.beans.RemoteExportBean.main(RemoteExportBean.java:67)

Exception in thread "main" 4: Failure
at com.jcraft.jsch.ChannelSftp.throwStatusError(ChannelSftp.java:2297)
at com.jcraft.jsch.ChannelSftp.checkStatus(ChannelSftp.java:1946)
at com.jcraft.jsch.ChannelSftp._put(ChannelSftp.java:566)
at com.jcraft.jsch.ChannelSftp.put(ChannelSftp.java:438)
at com.jcraft.jsch.ChannelSftp.put(ChannelSftp.java:405)
at zz.beans.RemoteExportBean.exportToFTP(RemoteExportBean.java:52)
at zz.beans.RemoteExportBean.main(RemoteExportBean.java:66)
4

0 回答 0