Java调用Linux SCP操作(SCPClient)

一、下載ganymed-ssh2-build210.jar 架包

http://pan.baidu.com/s/1eREzc1k

二、編寫java代碼

//1, 创建一个连接connection对象
Connection conn = new Connection(hostname);
//2, 进行连接操作
conn.connect();
//3, 进行连接访问授权验证
boolean isAuth = conn.authenticateWithPassword(user, psw);
if(!isAuth)
throw new Exception("Authentication failed");
//4, 创建一个SCPClient对象
SCPClient client = new SCPClient(conn);
client.put("/aa.txt", "/bb"); conn.close();
client.put方法第一个参数可以是个数组,即文件名的数组。暂时没找到整个目录的方法,就自己手动获取下目录文件列表

你可能感兴趣的:(JAVA开发,linux)