0

我正在使用 NSTask 和 setStandardOutput 将命令行工具的标准输出重定向到我的程序,因此我可以使用它进行处理。这很好用,但是当我运行我的程序时,工具的输出会显示为输出。我想完全重定向它,所以它只转到我指定的 NSPipe 对象。

这可能吗?下面的示例显示了输出标准输出,但我也想使用标准错误来执行此操作。

NSTask *ls=[[NSTask alloc] init];
NSPipe *pipe=[[NSPipe alloc] init];
NSFileHandle *handle;
NSString *string;

[ls setLaunchPath:@"/bin/ls"];
[ls setArguments:[NSArray arrayWithObjects:@"-l",@"/System",nil]];
[ls setStandardOutput:pipe];
handle=[pipe fileHandleForReading];

[ls launch];

string=[[NSString alloc] initWithData:[handle readDataToEndOfFile]
    encoding:NSASCIIStringEncoding]; 
4

1 回答 1

1

我做了一些更多的测试,发现上面的代码做了我想要的,而且我的程序运行时没有显示输出,所以看起来我毕竟没有问题。(:

于 2012-05-01T17:05:26.700 回答