Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在通过 java 在远程 linux 机器上运行一个进程。我需要在运行时检索我的 java 代码中的字符串中的每一行处理。我如何实现这一目标?
我目前正在使用 sshxcute-1.0 jar 来连接到我的远程机器并运行我的命令。它有一个 Result.sysout 方法,它以字符串的形式返回远程机器上处理的整个控制台。但这只有在整个过程结束后才会发生。
我想检索运行时发生的每一行处理,而不关闭我与远程机器的连接。可能吗?