* @throws JSchException
*/
public void remoteExec(String command, InputStream inputData, OutputStream outputData) throws JSchException {
JSch jsch=new JSch();
Session session=jsch.getSession(user, host, 22);
UserInfo ui=new MyUserInfo();
session.setUserInfo(ui);
session.connect();
Channel channel=session.openChannel("exec");
((ChannelExec)channel).setCommand(command);
// channel.setInputStream(inputData);