0

我正在尝试使用 NSTask 将二进制 plist 转换为 xml,尽管遇到了我不太理解的错误。如果我接受命令 NSTask 失败并将其复制到命令行,它就可以正常工作。希望有人能告诉我什么是错的。

NSString *defaultPath = [NSHomeDirectory() stringByAppendingPathComponent:@"Library/Preferences/com.defaults.plist"];

task = [[NSTask alloc] init];
[task setLaunchPath: @"/usr/bin/plutil"];

NSArray *arguments;
arguments = [NSArray arrayWithObjects: @"-convert xml1", defaultPath, nil];

// using `@"-convert", "xml1", defaultPath, nil` doesn't seem to work either.

[task setArguments: arguments];

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

NSFileHandle *file;
file = [pipe fileHandleForReading];

[task launch];

[task waitUntilExit];
[task release];

NSLog

/usr/bin/plutil (
    "-convert xml1",
    "/Users/Mira/Library/Preferences/com.defaults.plist"
)
unrecognized option: -convert xml1
4

2 回答 2

1

NSTask 为 shell 格式化它的命令的方式可能有点棘手。这是一个应该有帮助的建议。

[task setLaunchPath:@"/bin/bash"];

NSMutableArray *commandLine = [NSMutableArray new];
[commandLine addObject:@"-c"];
[commandLine addObject:@"/usr/bin/plutil -convert xml1"];
[commandLine addObject:defaultPath]; 

如果这不起作用,则制作一个长字符串 plutil 命令和文件路径,并将其作为 -c 之后的第二个对象添加到命令行。

前任:

NSString *cmd = [NSString stringWithFormat:@"/usr/bin/plutil -convert xml1 %@",defaultPath];

然后将其添加到数组中

[task setLaunchPath:@"/bin/bash"];

NSMutableArray *commandLine = [NSMutableArray new];
[commandLine addObject:@"-c"];
[commandLine addObject:cmd];

希望有帮助。祝你好运!

于 2013-05-09T02:25:53.887 回答
0

“-convert”和“xml1”需要是单独的字符串

于 2013-04-15T09:29:04.103 回答