XML解析之SAX詳解

来源:http://www.cnblogs.com/ldnh/archive/2016/03/19/5294605.html
-Advertisement-
Play Games

XML解析之SAX詳解 本文屬於作者原創 http://www.cnblogs.com/ldnh/ XML解析的五個步驟 1、打開文檔 (void)parserDidStartDocument:(NSXMLParser )parser ; 2、開始查找起始標簽 (void)parser:(NSXML


XML解析之SAX詳解

本文屬於作者原創 http://www.cnblogs.com/ldnh/

XML解析的五個步驟

  • 1、打開文檔

  • (void)parserDidStartDocument:(NSXMLParser *)parser ;

  • 2、開始查找起始標簽

  • (void)parser:(NSXMLParser )parser didStartElement:(NSString )elementName namespaceURI:(NSString )namespaceURI qualifiedName:(NSString )qName attributes:(NSDictionary *)attributeDict;

  • 3、獲取標簽內容

  • (void)parser:(NSXMLParser )parser foundCharacters:(NSString )string

  • 4、查找結束標簽

  • -(void)parser:(NSXMLParser )parser didEndElement:(NSString )elementName namespaceURI:(NSString )namespaceURI qualifiedName:(NSString )qName

  • 5、查詢文檔結束

  • (void)parserDidEndDocument:(NSXMLParser *)parser {

解析詳細代碼

#import "ViewController.h"
#import "JKPTrainInfo.h"
@interface ViewController ()<UITableViewDataSource,NSXMLParserDelegate>

@property (nonatomic,strong) NSMutableArray *dataList;

@property (nonatomic,strong) UITableView *tableView;

//因為下麵多次要用,所以要建一個全局變數
@property (nonatomic,strong) JKPTrainInfo *currentInfo;

@property (nonatomic,strong) NSMutableString *muString;

@end

@implementation ViewController

- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
//載入視圖
[self initUI];
//載入數據
[self loadData];

}

#pragma mark -getter and setter methods

-(NSMutableArray *)dataList
{
if (!_dataList) {
  
  _dataList = [NSMutableArray array];
}
return _dataList;
}

-(UITableView *)tableView
{
if (!_tableView) {
  
  _tableView = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStylePlain];
  
  _tableView.dataSource = self;
}
return _tableView;
}


- (NSMutableString *)muString
{
if (!_muString) {
  _muString = [NSMutableString string];
}

return _muString;
}

#pragma mark - UITableView dataSource

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

return self.dataList.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString * identifiter = @"cellID";

UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:identifiter];

if (!cell) {
  
  cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:identifiter];
}
JKPTrainInfo *JkpInfo = self.dataList[indexPath.row];

cell.textLabel.text = JkpInfo.trainStation;

cell.detailTextLabel.text = JkpInfo.arriveTime;

return cell;
}



#pragma mark - NSXMLParserDelegate 

//1. 打開文件,開始解析
-(void)parserDidStartDocument:(NSXMLParser *)parser
{
NSLog(@"打開文件,開始解析");

//每次解析前進行清空操作-防止多次載入重覆數據

[self.dataList removeAllObjects];
}

//2. 查找起始標簽
- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict
{


//    NSLog(@"%@",elementName);
//    
//    NSLog(@"%@",attributeDict);

if ([elementName isEqualToString:@"trainDetailInfo"]) {
  
  self.currentInfo = [[JKPTrainInfo alloc]init];
  
  [self.currentInfo setValuesForKeysWithDictionary:attributeDict];
}

//清空muString 數據
self.muString.string = @"";
}

//3.獲取標簽內容
- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string
{
//    NSLog(@"%@",string);

//防止多次執行獲取內容的方法
[self.muString appendString:string];
}

// 4.查找結束標簽
-(void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName
{
//    NSLog(@"%@",elementName);

if ([elementName isEqualToString:@"trainDetailInfo"]) {
  
  [self.dataList addObject:self.currentInfo];
}

else if (![elementName isEqualToString:@"dataSet"]&&![elementName isEqualToString:@"diffgr:diffgram"])
{
  // self.muString是數據內容
  [self.currentInfo setValue:self.muString forKey:elementName];
}

}

//5.解析完成
-(void)parserDidEndDocument:(NSXMLParser *)parser
{
NSLog(@"解析完成");

//解析完成後刷新數據
[self.tableView reloadData];
}

#pragma mark - event handle methods

- (void)loadData
{
NSString *urlString = @"http://192.168.1.68/train.xml";

NSURL *url = [NSURL URLWithString:urlString];

NSURLRequest *requst = [NSURLRequest requestWithURL:url];

[NSURLConnection sendAsynchronousRequest:requst queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
  
  //XML解析
  NSXMLParser *parser = [[NSXMLParser alloc]initWithData:data];
  
  parser.delegate = self;
  
  [parser parse];
  
}];

}

- (void)initUI
{
[self.view addSubview:self.tableView];
}

- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}

@end

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 問題 在ios 9中使用HTTP請求,Xcode就會拋出下麵的Exception: App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary
  • 管理範圍: 管理任何繼承NSObject的對象,對其他的基本數據類型無 效 本質原因是因為對象和其他數據類型在系統中的存儲空間不一樣,其它局部變數主要存放於 棧中,而對象存儲於堆中,當代碼塊結束時這個代碼塊中涉及的所有局部變數會被回收,指 向對象的指針也被回收,此時對象已經沒有指針指向,但依然存在於
  • 或許我沒見過世面,但是這卻是我看過對“怎麼成為一個優秀的程式員,而不是一個優秀的碼農?”最精彩的回答【全部複製粘貼】 其實我的心一直因為現在的工作【餐飲服務】而動搖,忽而想學網站,忽而c語言根基,忽而c#忽而java Android方向,然而當讀到這個問答時,我堅定我所喜歡的iOS,不管結局如何(一
  • XML解析(DOM) 1. 開始解析某個元素,會遍歷整個XML,識別元素節點名稱 - (void)parser:didStartElement:namespaceURI:qualifiedName:attributes: 2. 文本節點,得到文本節點里存儲的信息數據,對於大數據可能會接收多次!為了節
  • UIview內部有個預設的CALayer對象層,雖然我門不可以重新創建它,但是我門可以再其上面添加子層。 我們知道,UIView有 addSubview:方法,同樣,CALayer也有addSublayer:方法。我門可以通過addSublayer:再已有layer上添加自層。 下麵我門演示如何添加
  • Android平臺給我們提供了一個SharedPreferences類,實際上SharedPreferences處理的就是一個key-value(鍵值對),它是 一個輕量級的存儲類,特別適合用於保存軟體配置參數及用戶的偏好設置參數,比如登錄時候的記住密碼功能等。使用 SharedPreference
  • 對於一個app的好壞,我們首要判斷的便是app的界面,而界面的建立則是在圖形的處理基礎上的,說到圖形處理又不得不提及Quartz2D,CALayer。 在iOS系統中,你能看得見摸得著的東西基本上都是UIView,比如一個按鈕、一個文本標簽、一個文本輸入框、一個圖標等等,這些都是UIView。 其實
  • 兩個NSDate之間是可以進行比較的。 有了NSCalendar比較兩個日期就易如反掌 /** 1.今年 1> 今天 * 1分內: 剛剛 * 1分~59分內:xx分鐘前 * 大於60分鐘:xx小時前 2> 昨天 * 昨天 xx:xx 3> 其他 * xx-xx xx:xx 2.非今年 1> xxxx
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...