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.
假设将 linux 程序的输出发送到 java web 服务。我知道如何在 php 上做到这一点,但在 java 中如何?..
在php中我使用管道..
proc_open()
在 java 中,我可以将什么 API 用于 Web 服务?...这是我第一次使用 java 顺便说一句。
谢谢。
启动进程:ProcessBuilder
重定向输出流:Process.getOutputStream
ProcessBuilder 的 Oracle 文档提供了完整的代码示例。