MacDev 板


LINE

最近再练习写一个小的library,方便用Objective-C下Shell指令 NSTask需要一个launchPath来执行指令 於是我利用了Shell的whereis来查找其他指令的path 但是却发生奇怪的事情... 请看下面范例 1) 先帮NSTask开了Category,然後加入下面两个method //利用block设定NSTask相关的设定,然後会自动执行该task typedef void (^TaskBlock)(NSTask*); + (NSTask*) performTask:(TaskBlock) taskBuild{ NSTask *task = [[NSTask alloc] init]; task.standardOutput = [NSPipe pipe]; taskBuild(task); [task launch]; return task; } //快速取得回传的字串 - (NSString*) readOutput{ NSString *output; NSFileHandle* handle = [self.standardOutput fileHandleForReading]; NSData *data = [handle readDataToEndOfFile]; output = [[NSString alloc] initWithData:data encoding:NSISOLatin1StringEncoding]; return output; } 2) 利用上面的Category进行下面操作 NSString *whereisPath = @"/usr/bin/whereis"; NSTask *task = [NSTask performTask:^(NSTask *task){ task.launchPath = whereisPath; task.arguments = [NSArray arrayWithObjects:@"git", nil]; }]; NSString *taskOutput = [task readOutput]; NSLog(@"%@", taskOutput); console log => /usr/bin/git 然後利用这个获得的path接着执行下面git的操作 NSTask *git = [NSTask performTask:^(NSTask *task){ task.launchPath = taskOutput; task.arguments = [NSArray arrayWithObjects:@"status", nil]; }]; NSString *gitOutput = [git readOutput]; NSLog(@"%@", gitOutput); console log => launch path not accessible 获得的结果告知该path不能使用 於是我做了以下的检查 NSString *gitPath = @"/usr/bin/git"; if ([taskOutput isEqualToString:gitPath]) { NSLog(@"the same path string"); }else{ NSLog(@"not equal to the path string"); } NSLog(@"%lu", [taskOutput length]); NSLog(@"%lu", [gitPath length]); console log => not equal to the path string console log => 13 console log => 12 发现task回传的output多出一个字元 然後如下把taskoutput删除最後一个字元後 之前的code就可以跑了 taskOutput = [taskOutput substringToIndex:[taskOutput length]-1]; 想问一下这多出的字元是单纯的一个space吗? 还是跟data的EndOfFile有关?有什麽有效率的去除方式吗? 如果我每次都把whereis 的output删除最後一个字元拿来当做launchPath,这样可以吗? 测试过 stringByStandardizingPath这个方法,不过似乎不能帮我处理那个字元... --



※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 111.80.29.129 ※ 编辑: leondemon 来自: 111.80.29.129 (03/06 20:05)
1F:推 Piceman:先检查那个字元是什麽字? 03/07 00:10
2F:→ Piceman:话说这问题本身就很有教学性..推一个(Y) 03/07 00:10
3F:→ leondemon:我猜想应该是EOF的符号,可是我不知道怎麽检查 XD 03/07 01:00
4F:→ leondemon:因为NSLog看不出来.. Orz 03/07 01:00
5F:推 appleway:NSString 转NSData 印Hex 就可以看结尾了 03/07 01:47
6F:推 Piceman:NSLog(@"Hex Value: %x", [s characterAtIndex:i]);如何? 03/07 02:24
7F:→ Piceman:NSString* s=@"123456"; 03/07 02:25
8F:→ leondemon:谢谢两位,结果是A: NL line feed, new line 03/07 10:48







like.gif 您可能会有兴趣的文章
icon.png[问题/行为] 猫晚上进房间会不会有憋尿问题
icon.pngRe: [闲聊] 选了错误的女孩成为魔法少女 XDDDDDDDDDD
icon.png[正妹] 瑞典 一张
icon.png[心得] EMS高领长版毛衣.墨小楼MC1002
icon.png[分享] 丹龙隔热纸GE55+33+22
icon.png[问题] 清洗洗衣机
icon.png[寻物] 窗台下的空间
icon.png[闲聊] 双极の女神1 木魔爵
icon.png[售车] 新竹 1997 march 1297cc 白色 四门
icon.png[讨论] 能从照片感受到摄影者心情吗
icon.png[狂贺] 贺贺贺贺 贺!岛村卯月!总选举NO.1
icon.png[难过] 羡慕白皮肤的女生
icon.png阅读文章
icon.png[黑特]
icon.png[问题] SBK S1安装於安全帽位置
icon.png[分享] 旧woo100绝版开箱!!
icon.pngRe: [无言] 关於小包卫生纸
icon.png[开箱] E5-2683V3 RX480Strix 快睿C1 简单测试
icon.png[心得] 苍の海贼龙 地狱 执行者16PT
icon.png[售车] 1999年Virage iO 1.8EXi
icon.png[心得] 挑战33 LV10 狮子座pt solo
icon.png[闲聊] 手把手教你不被桶之新手主购教学
icon.png[分享] Civic Type R 量产版官方照无预警流出
icon.png[售车] Golf 4 2.0 银色 自排
icon.png[出售] Graco提篮汽座(有底座)2000元诚可议
icon.png[问题] 请问补牙材质掉了还能再补吗?(台中半年内
icon.png[问题] 44th 单曲 生写竟然都给重复的啊啊!
icon.png[心得] 华南红卡/icash 核卡
icon.png[问题] 拔牙矫正这样正常吗
icon.png[赠送] 老莫高业 初业 102年版
icon.png[情报] 三大行动支付 本季掀战火
icon.png[宝宝] 博客来Amos水蜡笔5/1特价五折
icon.pngRe: [心得] 新鲜人一些面试分享
icon.png[心得] 苍の海贼龙 地狱 麒麟25PT
icon.pngRe: [闲聊] (君の名は。雷慎入) 君名二创漫画翻译
icon.pngRe: [闲聊] OGN中场影片:失踪人口局 (英文字幕)
icon.png[问题] 台湾大哥大4G讯号差
icon.png[出售] [全国]全新千寻侘草LED灯, 水草

请输入看板名称,例如:WOW站内搜寻

TOP