JSch:純JAVA實現遠程執行SSH2主機的SHELL命令

上篇文章我編寫了利用JSch實現SFTP的文件上傳和下載 http://my.oschina.net/hetiangui/blog/137357,在本篇文章中,我將描述如何利用JSch實現執行遠程SSH2主機的SHELL命令,不說了,直接上代碼和詳細的代碼說明: java


/**
	 * 利用JSch包實現遠程主機SHELL命令執行
	 * @param ip 主機IP
	 * @param user 主機登錄用戶名
	 * @param psw  主機登錄密碼
	 * @param port 主機ssh2登錄端口,若是取默認值,傳-1
	 * @param privateKey 密鑰文件路徑
	 * @param passphrase 密鑰的密碼
	 */
	public static void sshShell(String ip, String user, String psw
			,int port ,String privateKey ,String passphrase) throws Exception{
		Session session = null;
		Channel channel = null;

		
		JSch jsch = new JSch();

		//設置密鑰和密碼
		if (privateKey != null && !"".equals(privateKey)) {
            if (passphrase != null && "".equals(passphrase)) {
            	//設置帶口令的密鑰
                jsch.addIdentity(privateKey, passphrase);
            } else {
            	//設置不帶口令的密鑰
                jsch.addIdentity(privateKey);
            }
        }
		
		if(port <=0){
			//鏈接服務器,採用默認端口
			session = jsch.getSession(user, ip);
		}else{
			//採用指定的端口鏈接服務器
			session = jsch.getSession(user, ip ,port);
		}

		//若是服務器鏈接不上,則拋出異常
		if (session == null) {
			throw new Exception("session is null");
		}
		
		//設置登錄主機的密碼
		session.setPassword(psw);//設置密碼   
		//設置第一次登錄的時候提示,可選值:(ask | yes | no)
		session.setConfig("StrictHostKeyChecking", "no");
		//設置登錄超時時間   
		session.connect(30000);
			
		try {
			//建立sftp通訊通道
			channel = (Channel) session.openChannel("shell");
			channel.connect(1000);

			//獲取輸入流和輸出流
			InputStream instream = channel.getInputStream();
			OutputStream outstream = channel.getOutputStream();
			
			//發送須要執行的SHELL命令,須要用\n結尾,表示回車
			String shellCommand = "ls \n";
			outstream.write(shellCommand.getBytes());
			outstream.flush();


			//獲取命令執行的結果
			if (instream.available() > 0) {
				byte[] data = new byte[instream.available()];
				int nLen = instream.read(data);
				
				if (nLen < 0) {
					throw new Exception("network error.");
				}
				
				//轉換輸出結果並打印出來
				String temp = new String(data, 0, nLen,"iso8859-1");
				System.out.println(temp);
			}
		    outstream.close();
		    instream.close();
		} catch (Exception e) {
			e.printStackTrace();
		} finally {
			session.disconnect();
			channel.disconnect();
		}
	}


利用JSch實現執行遠程SSH2主機的SHELL命令,見個人博文:http://my.oschina.net/hetiangui/blog/137426 shell

相關文章
相關標籤/搜索