确定。有关此问题的堆栈溢出有几个问题。 This question was the only question最接近地雷,但它使用通知。
代码非常简单。创建一个新的空Mac OSX项目,只需将以下代码粘贴到applicationDidFinishLaunching:
方法中即可。它应该获取任何可执行文件的路径(在本例中为GIT)。
NSTask *aTask = [[NSTask alloc] init];
NSPipe *outputPipe = [NSPipe pipe];
NSPipe *errorPipe = [NSPipe pipe];
[aTask setStandardOutput: outputPipe];
[aTask setStandardError: errorPipe];
[aTask setArguments:[NSArray arrayWithObject:@"which"]];
[aTask setLaunchPath:@"/usr/bin/git"];
NSFileHandle *outputFileHandler = [outputPipe fileHandleForReading];
NSFileHandle *errorFileHandler = [errorPipe fileHandleForReading];
[aTask launch];
[aTask waitUntilExit];
// Task launched now just read and print the data
NSData *data = [outputFileHandler readDataToEndOfFile];
NSString *outPutValue = [[NSString alloc] initWithData: data encoding: NSUTF8StringEncoding];
NSData *errorData = [errorFileHandler readDataToEndOfFile];
NSString *errorValue = [[NSString alloc] initWithData:errorData encoding:NSUTF8StringEncoding];
NSLog(@"Error value: %@",errorValue);
NSLog(@"Output Value: %@",outPutValue);
此代码设置两个读取管道并运行一个命令:which git
。
如果我在XCode中运行,我会得到相应的结果:
Error value: ""
Output Value: /usr/bin/git
如果我转到我的build / Products / Debug文件夹并双击可执行文件,我会在控制台应用程序上打印此消息:
问题:那么,这里真正的问题是什么?请不要做出替代解决方案......我也想知道问题是什么..谢谢。
答案 0 :(得分:14)
确定答案是关于堆栈溢出,但它分散在不同的问题上。
这里提出了问题 - > Commands with NSTask和此处 - > NSTask launch path not accessible以及
但截至目前,他们的回答并不清楚问题所在。只有在阅读NSTask not picking up $PATH from the user's environment的问题后(问题的标题具有误导性),并且通过这两个答案NSTask not picking up $PATH from the user's environment和Find out location of an executable file in Cocoa我才意识到解决方案。
看起来这是关于设置NS 任务或用户的shell(例如〜/ .bashrc)使得正确 NSTask可以看到环境($ PATH)。
解决方案:
[task setLaunchPath:@"/bin/bash"];
NSArray *args = [NSArray arrayWithObjects:@"-l",
@"-c",
@"which git", //Assuming git is the launch path you want to run
nil];
[task setArguments: args];
然而,这假设用户的shell 始终 bash,而其他人则无法使用。通过确定shell来解决这个问题。
NSDictionary *environmentDict = [[NSProcessInfo processInfo] environment];
NSString *shellString = [environmentDict objectForKey:@"SHELL"];