- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 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
最佳答案
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];
希望有帮助。祝你好运!
关于cocoa - NSTask plutil 无法识别的选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16011072/
我有一个 bash 脚本,它从 package.json 获取 plist 属性,我想将其传递给 plutil cat package.json | ./node_modules/.bin/json
我正在尝试使用 NSTask 将二进制 plist 转换为 xml,尽管遇到了一个我不太理解的错误。如果我将命令 NSTask 失败并将其复制到命令行,它就可以正常工作。希望有人能告诉我出了什么问题。
我需要获取“ProductVersion”的值并输出:“15.1”我有 plutil 的版本,但无法获取值 plutil -key ProductVersion myfile//不工作 这是我的文件内
我需要获取“ProductVersion”的值并输出:“15.1”我有 plutil 的版本,但无法获取值 plutil -key ProductVersion myfile//不工作 这是我的文件内
我正在尝试在我的构建服务器上使用 plutil 重命名我的 CFBundleDisplayName。这是我正在运行的 bash 脚本的一部分。 BUNDLE_DISPLAY_NAME='MY'"
我无法从 plutil 获取方向信息。我想检查 .plist 是否包含键 CFBundleShortVersionString。我不认为 plutil 有任何选项来测试 key 是否存在,所以我想我只
我正在学习使用命令 plutil 来编辑 .plist 文件。我遇到了这个问题:如果我想在数组中编辑字典的键值对,我应该如何处理 keypath?文件内容如下所示: [heping@Totoro:~
我编写了一个简单的命令行工具,用于将特定ini文件转换为属性列表的特殊需要。我正在使用 NSPropertyListSerialization 将字典写入 307kb 的二进制属性列表文件。但是,当我
我是一名优秀的程序员,十分优秀!