我正在寻找一个关于如何读取,修改一个值并使用cocoa编写xml文件的简短示例/教程。我发现的一切都是simple(只是读或写)或complex(是一个完整的xml编辑器)。
这似乎是一个非常标准的使用场景,所以我希望那里有一些东西......
答案 0 :(得分:6)
我错了,当时我声称写这些元素无法完成。 Apple有两个XML解析器,一个用于NSDictionary / NSArray / NSString / NSNumber / etc。对象和一个名为NSXMLDocument。
我删除了以前的代码,它与Mac OS X 10.3兼容;下面提到的代码将允许您拥有包含您喜欢的任何标记和属性的xml文件。 在我的示例中,代码将创建一个类似于以下内容的XML文件:
<根><反向→1< /计数器>< /根>
注意:如果你想进一步减少'计数',你甚至可以删除'计数器'并将'root'重命名为'counter'。
新代码与Mac OS X 10.4兼容并转发;它经过测试并开箱即用:
- (void)incrementCounter
{
NSXMLDocument *xmlDoc;
NSError *error;
NSURL *url;
NSXMLElement *root;
id item;
NSData *data;
NSArray *children;
int counter;
NSString *pathname;
pathname = [@"~/myFile" stringByExpandingTildeInPath];
url = [NSURL fileURLWithPath:pathname];
xmlDoc = [[NSXMLDocument alloc] initWithContentsOfURL:url options:NSXMLDocumentTidyXML error:&error];
if(xmlDoc)
{
root = [xmlDoc rootElement];
}
else
{
root = [NSXMLNode elementWithName:@"root"];
xmlDoc = [[NSXMLDocument alloc] initWithRootElement:root];
}
// fetch value:
children = [root nodesForXPath:@"counter" error:&error];
item = [children count] ? [children objectAtIndex:0] : NULL;
// modify value:
counter = item ? [[item stringValue] intValue] : 0;
counter++;
if(NULL == item)
{
item = [NSXMLNode elementWithName:@"counter" stringValue:@"0"];
[root insertChild:item atIndex:0];
}
[item setStringValue:[[NSNumber numberWithInt:counter] stringValue]];
// write:
data = [xmlDoc XMLData];
[data writeToURL:url atomically:YES];
}
答案 1 :(得分:2)
这是我对问题的解决方案 - 只是我写出以前读过和解析过的文件的部分......
使用PacMan的解决方案 - 我遇到了输出xml 文件没有很好地格式化的问题(根本没有换行符)。
另一点是,我通常更喜欢使用 XPath 浏览XML文档。
我的代码是类的一部分,所以每个节点都有一个属性(NSString * cfaLayout和NSInteger bitsPerPixel):
-(BOOL) savePropertiesFile{
BOOL isSuccess=FALSE;
NSError* error;
NSXMLElement* currentElement;
NSArray* nodes;
/* parse existing url file before saving it to new url */
if([_documentUrl checkResourceIsReachableAndReturnError:&error]==YES){
self.document=[[NSXMLDocument alloc]
initWithContentsOfURL:_documentUrl
options:0
error:&error];
/* check top node */
nodes=[_document nodesForXPath:@"/ImageFormat-Properties"
error:&error];
if([nodes count]==0){
return FALSE;
}
/* cfa layout */
nodes=[_document nodesForXPath:@"/ImageFormat-Properties/ImageFormatDetails/CFALayout[text()]"
error:&error];
if([nodes count]>0){
currentElement=[nodes objectAtIndex:0];
[currentElement setStringValue:[_cfaLayout lowercaseString]];
}
else{
return FALSE;
}
/* bitsPerPixel */
nodes=[_document nodesForXPath:@"/ImageFormat-Properties/ImageFormatDetails/BitsPerPixel[text()]"
error:&error];
if([nodes count]>0){
currentElement=[nodes objectAtIndex:0];
[currentElement setStringValue:[NSString stringWithFormat: @"%ld", (long)_bitsPerPixel]];
}
else{
return FALSE;
}
}
[_document setDocumentContentKind:NSXMLDocumentXMLKind];
[_document setCharacterEncoding:@"UTF-8"];
[_document validateAndReturnError:&error];
if(error){
return FALSE;
}
[self setDocumentUrl:_documentSaveAsUrl];
NSData* xmlData=[_document XMLDataWithOptions:NSXMLNodePrettyPrint];
isSuccess=[xmlData writeToURL:_documentSaveAsUrl atomically:YES];
return isSuccess;
}
对某人有用......
答案 2 :(得分:-4)