首页>代码>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;
    }


}
最近下载更多
qiheideguang  LV18 2024年7月24日
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日
最近浏览更多
qiheideguang  LV18 2024年7月24日
zhyoyu 2024年5月20日
暂无贡献等级
微信网友_6902352269217792  LV3 2024年3月12日
LARY  LV1 2024年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日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友