首页>代码>Java连接Linux服务器并上传文件、下载文件、发送指令>/new_maven/src/main/java/com/hai/linux/shellUtils.java
package com.hai.linux;

import ch.ethz.ssh2.Connection;
import ch.ethz.ssh2.Session;

import java.io.IOException;

//与linux客户端连接
public class shellUtils {

    public static Connection getConnection(String hostname,int port,String username,String password){
        //获取连接
        Connection conn = new Connection(hostname, port);

        try {
            //连接
            conn.connect();
            //输入账号密码登陆
            boolean isAuthenticated = conn.authenticateWithPassword(username, password);
            //登陆失败,返回错误
            if(isAuthenticated == false){
                System.out.println("连接建立失败");
                throw new IOException("isAuthentication failed.");
            }

        } catch (IOException e) {
            e.printStackTrace();
        }
        return conn;

    }

    public static Session getSession(Connection conn){
        Session sess = null;
        try {
            sess = conn.openSession();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return sess;
    }


}
最近下载更多
438265764  LV14 2023年7月31日
15866685272  LV3 2023年5月4日
林间听风  LV10 2023年2月1日
lironggang  LV38 2022年11月20日
lxsnh123  LV3 2022年11月18日
skipple3  LV39 2022年10月18日
zw050256  LV7 2022年9月30日
wuyu8995861  LV7 2022年8月8日
liuyu-zui  LV4 2022年8月1日
CrystalQ  LV8 2022年7月9日
最近浏览更多
LARY  LV1 1月5日
tangjianzhong 2023年12月19日
暂无贡献等级
kkkxyh  LV13 2023年12月11日
jiemomo  LV12 2023年10月19日
19050126312  LV1 2023年10月19日
2036495585  LV9 2023年9月25日
438265764  LV14 2023年7月31日
zw5097  LV23 2023年7月15日
tangyongheng08  LV6 2023年6月15日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友