使用 NSTask 将数据传递到工具的标准输入

发布于 2024-11-14 09:53:43 字数 124 浏览 5 评论 0原文

假设我有一些工具,在执行过程中的某个时刻,会要求用户输入。例如,它可能会要求提供姓名和地址。有时它可能会要求输入密码(并重新输入密码)。

NSTask 和 NSPipe 对象是否可以处理这些事情,即与命令行工具交互?

Let's say I have some tool that, at some point in its execution, asks for user input. For example, it might ask for name and address. At another point it might ask for a password (and retyping of the password).

Is it possible for NSTask and NSPipe objects to deal with these things, i.e. to interact with command line tools?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不忘初心 2024-11-21 09:53:43

请参阅 setStandardInput: NSTask 方法。它允许您在启动任务之前将 NSPipe 或 NSFileHandle 设置为任务的标准输入。 标准输出标准错误

See the setStandardInput: method of NSTask. It allows you to set either a NSPipe or NSFileHandle as the task's standard input before launching it. There are also similar methods for standard output and standard error.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文