如何在java程序中调用linux命令或者shell脚本
2017-09-30
展开全部
//实现远程连接
Connection conn = new Connection(scpAddr, Integer.parseInt(scpPort));
conn.connect(); //连接
logger.debug("登陆远程服务器:"+scpUserName+","+scpPassword);
//登陆远程服务器的用户名密码
boolean isAuthed = conn.authenticateWithPassword(scpUserName, scpPassword);
//登陆失败
if(!isAuthed) {
logger.debug("登陆远程服务器失败");
return false;
}
Session sshSession = conn.openSession();
logger.debug("cd / && rm -f "+file +"&& pwd");//linux 命令
sshSession.execCommand("cd / && rm -f "+file +" && pwd");//执行
sshSession.close();
conn.close();
Connection conn = new Connection(scpAddr, Integer.parseInt(scpPort));
conn.connect(); //连接
logger.debug("登陆远程服务器:"+scpUserName+","+scpPassword);
//登陆远程服务器的用户名密码
boolean isAuthed = conn.authenticateWithPassword(scpUserName, scpPassword);
//登陆失败
if(!isAuthed) {
logger.debug("登陆远程服务器失败");
return false;
}
Session sshSession = conn.openSession();
logger.debug("cd / && rm -f "+file +"&& pwd");//linux 命令
sshSession.execCommand("cd / && rm -f "+file +" && pwd");//执行
sshSession.close();
conn.close();
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询