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.
我使用 ProcessBuilder 类从 java 程序中调用了一个脚本。脚本提示输入一些内容。如何从java程序传递值。
我试着像使用那个过程一样,我得到了一个 writer 对象,并试图写入该值,但它不起作用。
如果子进程(脚本)从标准输入流中读取其输入,您可以通过连接的输出流(getOutputStream())将其提供给它。
getOutputStream()