使用 NSTask 将数据传递到工具的标准输入
假设我有一些工具,在执行过程中的某个时刻,会要求用户输入。例如,它可能会要求提供姓名和地址。有时它可能会要求输入密码(并重新输入密码)。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅
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.