xml,json解析
//4测试xml本地文件解析需要一个xml.的libxml2.dylib 和一个GData文件夹。
//目标文件路径。
NSString *xmlPath=[[[NSBundlemainBundle]bundlePath]stringByAppendingPathComponent:@"student.xml"];
//目标文件内容。
NSString *xmlContent=[NSStringstringWithContentsOfFile:xmlPath encoding:NSUTF8StringEncodingerror:nil];
NSLog(@"xmlContent===%@",xmlContent);
//创建要解析的xml文档对象。
GDataXMLDocument *doc=[[GDataXMLDocumentalloc]initWithXMLString:xmlContent options:0error:nil];
//获取跟元素。
GDataXMLElement *root=doc.rootElement;
NSLog(@"root===%@",root);
//从根元素获取元素。
NSArray *docList=[root elementsForName:@"student"];//和[root children]一样。
NSLog(@"docList==%@",docList);
//4获取第一个student元素
GDataXMLElement *student1=[docList objectAtIndex:0];
NSLog(@"student1==%@",student1);
//5获取子元素
NSArray *stuAry1=[student1 children];
NSLog(@"stuAry1==%@",stuAry1);
//获取每个子元素
for (GDataXMLElement *e in stuAry1) {
if ([e.name isEqualToString:@"name"]) {
NSLog(@"ename====%@",e.stringValue);
}
GDataXMLNode *nod=[e attributeForName:@"first"];
NSLog(@"nod==%@",[nod stringValue]);
2.json解析需要一个json的文件夹。
如果想按一下背景就可以取消自带的键盘,可以在uiview中的。touch事件中写一个[textField resignFirstResponse]就行了。
#import "ViewController.h"
#import "JSON.h"
@implementation ViewController
@synthesize url;
@synthesize urlImage;
@synthesize imageData;
- (void)viewDidLoad
{
[superviewDidLoad];
NSLog(@"%@",__FUNCTION__);
// NSString *str=[NSString stringWithFormat:@"http://api.jiepang.com/v1/locations/search?lat=39.916&lon=116.393&count=2&source=100000"];
// NSURL *url3=[NSURL URLWithString:str];
// NSURLRequest *req=[NSURLRequest requestWithURL:url3];
// [NSURLConnection connectionWithRequest:req delegate:self];
// NSString *string=[NSString stringWithContentsOfFile:url encoding:NSUTF8StringEncoding error:nil];
// NSLog(@"error =====%@",error);
// NSLog(@"string=====%@",string);
// //获取字典类型的数据。
// NSDictionary *dic=[string JSONValue];
// //取statuses对应的value值。
// NSArray *array=[dic valueForKey:@"statuses"];
// //取数组的第一项。
// NSDictionary *dicc=[array objectAtIndex:0];
// //取text对应的value。
// NSString *str=[dicc valueForKey:@"text"];
// NSLog(@"str=====%@",str);
}
- (IBAction)buttonClick:(id)sender {
[urlresignFirstResponder];
//获取文本框地址
NSString *urlString=self.url.text;
//获取url对象。
NSURL *url1=[NSURL URLWithString:urlString];
//根据url对象,获取request对象。
NSURLRequest *request=[NSURLRequestrequestWithURL:url1 cachePolicy:NSURLRequestReloadIgnoringLocalCacheDatatimeoutInterval:18];
// NSURLRequest *re=[NSURLRequest requestWithURL:url1];
// //发起同步连接返回给imageData。
// NSData *imageData=[NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
// //给图形赋图像。
// self.urlImage.image=[UIImage imageWithData:imageData];
//发起异步连接
[NSURLConnectionconnectionWithRequest:request delegate:self];
}
//json 是另外一中数据格式组织形式,
//大括号代表字典,中括号,小括号代表数组,冒号左右分别为键和值。如name :"zhang"
#pragma mark=====异步链接的代理=====
//链接建立成功的代理。
-(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response{
NSLog(@"建立链接成功。");
// self.imageData=[[NSMutableData alloc]init ];
// NSLog(@"接受总数据的%d",length=[response expectedContentLength]);
// NSLog(@"接受总数据的%lld",[response expectedContentLength]);
self.imageData=[[NSMutableDataalloc]init];
}
-(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data{
//将每次获取的数据添加到imageData中。
// [self.imageData appendData:data];
// float pr=[self.imageData length];
// NSLog(@"百分比:===%%%6.2lf",pr/length*100);
// NSLog(@"接受数据%d",data.length);
// NSLog(@"接受数据%d",[data length]);
// self.urlImage.image=[UIImage imageWithData:self.imageData];
[self.imageData appendData:data];
NSString *strData=[[NSStringalloc]initWithData:self.imageDataencoding:NSUTF8StringEncoding];
NSMutableDictionary *dicJson=[strData JSONValue];
NSLog(@"dicJson==%@",dicJson);
NSArray *array=[dicJson valueForKey:@"items"];
NSMutableDictionary *dic=[array objectAtIndex:0];
NSMutableDictionary *dic1=[array objectAtIndex:1];
NSString *stName=[dic valueForKey:@"name"];
NSString *adr1=[dic valueForKey:@"addr"];
NSString *stName2=[dic1 valueForKey:@"name"];
NSString *adr2=[dic1 valueForKey:@"addr"];
NSLog(@"stName======%@",stName);
NSLog(@"adr1======%@",adr1);
NSLog(@"stName2======%@",stName2);
NSLog(@"adr2======%@",adr2);
}
-(void)connectionDidFinishLoading:(NSURLConnection *)connection {
// self.urlImage.image=[UIImage imageWithData:self.imageData];
}
- (void)viewDidUnload
{
NSLog(@"%@",__FUNCTION__);
[self setUrl:nil];
[selfsetUrlImage:nil];
[superviewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
-(void)dealloc{
NSLog(@"%@",__FUNCTION__);
[url release];
[urlImage release];
[super dealloc];
}
相关推荐
本文将探讨"xmljson解析客户端"相关的知识点,包括XML和JSON的基本概念、它们之间的转换,以及可能使用的解析库。 首先,XML是一种基于文本的标记语言,它的主要特点是可以定义自定义的标签来表示数据。XML文档由...
以上就是Android中XML和JSON解析的基本概念和实例。在实际开发中,开发者通常会结合网络请求库(如Volley、OkHttp、Retrofit等)一起使用,从服务器获取XML或JSON数据,然后进行解析和展示。了解和掌握这两种解析...
iOS JSON XML 解析实例 e,详情见:http://blog.csdn.net/vnanyesheshou/article/details/52484367 http://blog.csdn.net/vnanyesheshou/article/details/52505430
JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the ...
XML和JSON解析是Android应用开发中不可或缺的部分,选择合适的解析方式取决于数据的大小、应用场景以及性能需求。DOM适合小规模、结构复杂的XML,SAX适用于大文件;对于JSON,Gson和Jackson在性能和易用性上表现良好...
本篇文章将深入探讨AFNetworking如何进行XML和JSON解析,并将解析结果转化为字典格式。 首先,我们来看XML解析。XML(eXtensible Markup Language)是一种标记语言,用于描述数据结构,常用于服务器与客户端之间的...
总结一下,这个"iOS xml解析和json解析demo"将涵盖如何在iOS应用中解析XML数据,包括使用NSXMLParser和XMLParser,以及如何解析和序列化JSON数据,包括使用内置的JSONSerialization类和可能涉及的一些第三方库。...
本着探究 JSON 原理的目的,我将会在这DEMO中实现了一个简单的JSON解析器。由于 JSON 本身比较简单,解析起来也并不复杂。所以如果大家感兴趣的话,在看完本DEMO后,不妨自己动手实现一个 JSON 解析器。
PB Json解析库是一种用于处理协议缓冲区(Protocol Buffers,简称PB)与JSON之间相互转换的工具。在软件开发中,尤其是涉及到数据交换时,PB和JSON都扮演着重要的角色。PB是Google推出的一种高效的数据序列化协议,...
本资料包包含`dom4j`和`fastjson`两个库,分别用于处理XML和JSON解析。 1. **DOM4J**: DOM4J是一个Java库,它提供了全面和强大的XML处理功能。DOM(Document Object Model)是W3C推荐的一种解析XML的标准模型,...
JSON解析可以借助Gson库,XML解析可以使用`XmlPullParser`或第三方库。在WebView中加载服务器返回的HTML内容,可以利用`loadData`或`loadDataWithBaseURL`方法。这些技术在Android开发中至关重要,能有效提升应用的...
XML(Extensible Markup Language)和JSON(JavaScript Object Notation)是两种...理解和熟练使用XML和JSON解析是现代软件开发者必备的技能,尤其是在移动互联领域,它们是实现应用程序与服务器间数据交换的重要桥梁。
在Android中,JSON解析主要分为两个过程:解析(将JSON字符串转化为Java对象)和序列化(将Java对象转化为JSON字符串)。 1. **解析JSON** - `org.json`库:Android SDK内置了`org.json`库,提供了`JSONObject`和`...
融合了XML与JSON的合成与解析(包括创建、更新、添加、删除、显示等操作)
标题“json解析xml的jar包”指的是一个Java的库或组件,它提供了解析XML到JSON或反向转换的功能。这个jar包已经过测试,并且被证实是可用的,意味着它在实际项目中可以稳定运行,无需担心兼容性或功能性问题。 在...
json xml 解析demojson xml 解析demojson xml 解析demojson xml 解析demojson xml 解析demojson xml 解析demo
spirng+struts+Ibatis+xml、json解析
一直苦恼xml转json,很多工具类支持,但是转换的效果都很差,一个偶然的时间,我找到这个资源,分享给大家,解析效果相当不错。 使用方法: //将xml转为json JSONObject xmlJSONObj = XML.toJSONObject(ret);
### JSON解析 在iOS中,处理JSON数据主要有以下几种方式: 1. **系统解析**: iOS自iOS5开始引入了`NSJSONSerialization`类,它提供了一套简单易用的API来序列化和反序列化JSON数据。可以将JSON字符串转换为...
同样,从JSON解析出的数据也需要构建对应的XML结构。 项目中的"tinytest111"可能是一个测试程序,用于验证XML到JSON和JSON到XML转换的正确性。测试代码通常会包含各种XML和JSON样例,检查转换过程是否保持了数据的...