java - System.out.println同时打印

标签 java eclipse ssh

我正在构建一个简单的程序,该程序使用Ganymed for SSH2库对Linux服务器执行单个命令。这是我的代码...

public class Main {

static Scanner reader = new Scanner(System.in);


public static void main(String[] args) throws IOException, InterruptedException{        


    String hostname; // = "192.168.1.241";
    int port; // = 22
    String username; // = "root";
    String password; 
    String cmd; // = "echo 'Hello World'";

    //ask user for hostname/IP
    System.out.print("Enter hostname or IP: ");
    hostname = reader.nextLine();


    //ask user for port #
    System.out.print("Enter port number: ");
    port = reader.nextInt();        

        //create connection
        Connection connect = new Connection(hostname, port);

    //ask user for username
    System.out.println("Enter Username (best to use 'root'): ");
    username = reader.nextLine();

    //ask user for password
    System.out.println("Enter Password: ");
    password = reader.nextLine();   


    System.out.println("Attempting to log in...");

    reader.close(); 

        //establish connection
        connect.connect();

        //login using password
        connect.authenticateWithPassword(username, password);

        Thread.sleep(1000);
        if (Thread.interrupted())  // Clears interrupted status!
              throw new InterruptedException();

        Boolean didConnect = connect.isAuthenticationComplete();
        if (didConnect==false){
            throw new IOException("Authentication Unsucessful \nCheck hostname and port number, then try again.");
        }

            //open session
            Session session = connect.openSession();
            System.out.println("Opened session!");              




        System.out.println("Enter a command to execute: ");
        cmd = reader.nextLine();

        //execute command
        session.execCommand(cmd);


        //get output
        InputStream stdout = new StreamGobbler(session.getStdout());

        BufferedReader br = new BufferedReader(new InputStreamReader(stdout));

        String line = br.readLine();
        if (line!=null){
            System.out.println("Command sent succesfully!" + "\nOutput: " + "\n" + "\n" + line);
        }else{
            System.out.println("Command sent succesfully!" + "\nNo Output");
        }

        //close buffered reader
        br.close();

        //close session
        session.close();

        //close connection
        connect.close();


    }



}

由于某些原因...
//ask user for username
    System.out.println("Enter Username (best to use 'root'): ");
    username = reader.nextLine();

    //ask user for password
    System.out.println("Enter Password: ");
    password = reader.nextLine();   

同时打印,我也不知道为什么!使用print ln 时,它还会在完全不同的行上而不是紧挨着它旁边获得用户输入,而使用 print 时,它将在同一行上得到用户输入。

我希望他们先要求用户名,然后再要求密码,将用户输入放在输出旁边。但是,当我询问主机名和端口号时,它们会按我的意愿逐个/按顺序打印。我究竟做错了什么?

最佳答案

完成port = reader.nextInt();之后,您需要放置一个reader.nextLine()来读取具有int的其余行(和换行符)。

//ask user for port #
System.out.print("Enter port number: ");
port = reader.nextInt();        
reader.nextInt()不读取换行符或数字之后的任何内容。

添加reader.nextLine(),然后其余代码应遵循:
reader.nextLine();

//ask user for username
System.out.println("Enter Username (best to use 'root'): ");
username = reader.nextLine();

//ask user for password
System.out.println("Enter Password: ");
password = reader.nextLine();

关于java - System.out.println同时打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34912675/

相关文章:

java - 什么是 Future<void>?

eclipse - M2E:版本与父版本重复 - 为什么这是一个警告?

javascript - 通过 SSH 连接到实例并启动 Node app.js 的脚本

linux - 自动执行两个连续 ssh 连接的脚本

java - protected 为什么不能在不同的包子类中访问?

java - JAX-WS:如何通知客户端有效的参数值?

java - eclipse动态web项目默认起始页

Eclipse 多行缩进使用制表符而不是空格 (pydev)

ssh - 远程运行 qemu(通过 ssh)

java - 如何使用扫描仪类 : Exception in thread "main". 解决此错误 ..?