2013-02-06 3 views
0

코코아 응용 프로그램에서 다음을 실행하려고합니다 :NSTask로 cli를 실행하려고 시도하지 않았습니다.

고양이 PATHTOFILE | 파이썬은 -mjson.tool> OUTPUTFILE 나는 다음과 같은 오류를 얻고있다 그러나

NSTask *task = [[NSTask alloc] init]; 
    [task setLaunchPath: @"/bin/cat"]; 

    NSArray *arguments = [NSArray arrayWithObject: path]; 
    [task setArguments: arguments]; 

    NSPipe *pipe = [NSPipe pipe]; 
    [task setStandardOutput:pipe]; 
    [task launch]; 

    NSTask *task2 = [[NSTask alloc] init]; 
    [task2 setLaunchPath:@"/usr/bin/python"]; 
    NSArray *arguments2 = [NSArray arrayWithObject:[NSString stringWithFormat:@"-mjson.tool > %@.beautify", path]]; 
    [task2 setArguments:arguments2]; 
    [task2 setStandardInput:pipe]; 

    NSPipe *pipe2 = [NSPipe pipe]; 
    [task2 setStandardOutput:pipe2]; 
    [task2 launch]; 

: 는/usr/빈/파이썬 : 파일 이름으로 가져 오기는 지원되지 않습니다.

아이디어가 있으십니까?

답변

0

파이썬 오류와 비슷합니다. (터미널에서 사용)

/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/json/tool.py

내용이

""" headers...""" 
import sys 
import json 

def main(): 
    if len(sys.argv) == 1: 
     infile = sys.stdin 
     outfile = sys.stdout 
    elif len(sys.argv) == 2: 
     infile = open(sys.argv[1], 'rb') 
     outfile = sys.stdout 
    elif len(sys.argv) == 3: 
     infile = open(sys.argv[1], 'rb') 
     outfile = open(sys.argv[2], 'wb') 
    else: 
     raise SystemExit(sys.argv[0] + " [infile [outfile]]") 
    try: 
     obj = json.load(infile) 
    except ValueError, e: 
     raise SystemExit(e) 
    json.dump(obj, outfile, sort_keys=True, indent=4) 
    outfile.write('\n') 


if __name__ == '__main__': 
    main() 

당신의 작업입니다 이러한 import 문을 해결할 수 :

/usr/bin/python -mjson.tool는 다음 파일을 호출합니다. 터미널만큼이나 알지 못하기 때문에 이걸 찾을 수 없기 때문에 ... NSTask is not launching Python with correct path