使用 NSXMLParser 在 Swift 中解析分层 XML
Parsing Hierarchical XML in Swift using NSXMLParser
我在以我可以实际使用的形式恢复分层 XML 值时遇到问题,因此非常感谢任何帮助。我是 Swift 和 IOS 开发的新手,所以老实说我并不完全理解解析器,但我希望在这之后我会理解!
这是我尝试解析的示例 XML,它来自 soap 网络服务。在连接和获取数据方面的所有方面都完美无缺
<s:Envelope
xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<get_Entry_DetailsResponse
xmlns="http://tempuri.org/">
<get_Entry_DetailsResult>
<ApiResult
xmlns="">
<Status>Success</Status>
<Parameters>
<TotalRecords>1</TotalRecords>
<Records>
<Entry>
<Entry_ID>1234</Entry_ID>
<Title>This is the Title</Title>
<Description>This is a description.</Description>
<Charge_USD>3</Charge_USD>
<Charge_GBP>1.5</Charge_GBP>
<Classifications>
<Classification_Type>No. Of Colours</Classification_Type>
<Description>10</Description>
<Classification_Type>Height</Classification_Type>
<Description>16.712</Description>
<Classification_Type>Width</Classification_Type>
<Description>1.485</Description>
<Classification_Type>Width Count</Classification_Type>
<Description>11</Description>
<Classification_Type>Pages</Classification_Type>
<Description>6</Description>
<Classification_Type>Type</Classification_Type>
<Description>Type Description</Description>
<Classification_Type>Topic</Classification_Type>
<Description>Transport</Description>
<Classification_Type>Item</Classification_Type>
<Description>Shop Item</Description>
<Classification_Type>Material</Classification_Type>
<Description>Metal</Description>
<Classification_Type>Manufacturer</Classification_Type>
<Description>Unknown</Description>
</Classifications>
</Entry>
</Records>
</Parameters>
</ApiResult>
</get_Entry_DetailsResult>
</get_Entry_DetailsResponse>
</s:Body>
</s:Envelope>
所以我可以获得像 Entry_ID、标题、描述、Charge_GBP 和 Charge_USD 这样的元素很好,这就是如何将分类返回到代码中以便我可以实际使用将其输出到页面上。
这是我的 connectionDidFinishLoading,我在其中启动解析器并 运行:
func connectionDidFinishLoading(connection: NSURLConnection!) {
var xmlParser = NSXMLParser(data: mutableData)
xmlParser.delegate = self
xmlParser.parse()
xmlParser.shouldResolveExternalEntities = true
}
然后是 XMLParser Delegate 内容:
var mutableData:NSMutableData = NSMutableData.alloc()
var currentElementName:NSString = ""
var foundCharacters = ""
var appParsedData = [Dictionary<String, String>]()
var currentDataDictionary = Dictionary<String, String>()
func parser(parser: NSXMLParser!, didStartElement elementName: String!, namespaceURI: String!, qualifiedName qName: String!, attributes attributeDict: NSDictionary!) {
currentElementName = elementName
}
func parser(parser: NSXMLParser, didEndElement elementName: String!, namespaceURI: String!, qualifiedName qName: String!) {
if !foundCharacters.isEmpty {
currentDataDictionary[currentElementName] = foundCharacters
foundCharacters = ""
//Last Element so add to main Dictionary
//Cannot find last element yet on XML so use Charge_GBP for testing until fixed
if currentElementName == "Charge_GBP" {
appParsedData.append(currentDataDictionary)
}
}
}
func parser(parser: NSXMLParser, foundCharacters string: String!) {
if (currentElementName == "Entry_ID") || (currentElementName == "Title") || currentElementName == "Description" || currentElementName == "Charge_USD" || currentElementName == "Charge_GBP" || currentElementName == "Classification_Type" {
foundCharacters += string
}
}
func parserDidEndDocument(parser: NSXMLParser!) {
self.setupItemsOnView()
}
那么我的 setupItemsOnView 函数是:
func setupItemsOnView() {
for (currentElementName) in appParsedData {
println("\(currentElementName):")
}
let test = appParsedData[0] as Dictionary<String, String>
let test_entryid = test["Entry_ID"]
println("Entry ID is \(test_entryid)")
}
呼,好的,所以基本上我可以在 setupItemsOnView 函数中获取值 Entry_ID、标题、描述、Charge_GBP 和 Charge_USD,但是使用此方法我无法获取分类和描述值以有意义的方式从分类 parent 返回。我目前正在使用你可以看到的字典来存储数据,所以我想知道当你有分层 XML 时使用字典是否正确,但我不知道还能尝试什么.
从我的背景来看,您可以使用点符号来引用 XML,并且只需围绕 parent 循环所有元素,但我无法在 swift,所以我只需要一种可用的方法来以我可以输出的形式取回所有数据。
如果您能提供任何有助于解决此问题的代码,我们将不胜感激。
干杯
D
您想要的是与 Swift 的 jaxb 相当的东西 -- 但我不知道它存在。无论如何,在 Swift 中进行解析类似于使用 SAX 解析器。据推测,您的 Swift 代码中有一个 class 层次结构,对应于 XML 中的元素层次结构。我使用的方法是有状态的——只需实例化对应于已解析元素的 class,并将其保存在为此目的指定的变量中。然后,您的解析代码可以填充 class 数据,因为它会在后续回调中遇到。当然,您必须分层执行此操作,并使用 didEndElement
回调来检测完成。
我在以我可以实际使用的形式恢复分层 XML 值时遇到问题,因此非常感谢任何帮助。我是 Swift 和 IOS 开发的新手,所以老实说我并不完全理解解析器,但我希望在这之后我会理解!
这是我尝试解析的示例 XML,它来自 soap 网络服务。在连接和获取数据方面的所有方面都完美无缺
<s:Envelope
xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<get_Entry_DetailsResponse
xmlns="http://tempuri.org/">
<get_Entry_DetailsResult>
<ApiResult
xmlns="">
<Status>Success</Status>
<Parameters>
<TotalRecords>1</TotalRecords>
<Records>
<Entry>
<Entry_ID>1234</Entry_ID>
<Title>This is the Title</Title>
<Description>This is a description.</Description>
<Charge_USD>3</Charge_USD>
<Charge_GBP>1.5</Charge_GBP>
<Classifications>
<Classification_Type>No. Of Colours</Classification_Type>
<Description>10</Description>
<Classification_Type>Height</Classification_Type>
<Description>16.712</Description>
<Classification_Type>Width</Classification_Type>
<Description>1.485</Description>
<Classification_Type>Width Count</Classification_Type>
<Description>11</Description>
<Classification_Type>Pages</Classification_Type>
<Description>6</Description>
<Classification_Type>Type</Classification_Type>
<Description>Type Description</Description>
<Classification_Type>Topic</Classification_Type>
<Description>Transport</Description>
<Classification_Type>Item</Classification_Type>
<Description>Shop Item</Description>
<Classification_Type>Material</Classification_Type>
<Description>Metal</Description>
<Classification_Type>Manufacturer</Classification_Type>
<Description>Unknown</Description>
</Classifications>
</Entry>
</Records>
</Parameters>
</ApiResult>
</get_Entry_DetailsResult>
</get_Entry_DetailsResponse>
</s:Body>
</s:Envelope>
所以我可以获得像 Entry_ID、标题、描述、Charge_GBP 和 Charge_USD 这样的元素很好,这就是如何将分类返回到代码中以便我可以实际使用将其输出到页面上。
这是我的 connectionDidFinishLoading,我在其中启动解析器并 运行:
func connectionDidFinishLoading(connection: NSURLConnection!) {
var xmlParser = NSXMLParser(data: mutableData)
xmlParser.delegate = self
xmlParser.parse()
xmlParser.shouldResolveExternalEntities = true
}
然后是 XMLParser Delegate 内容:
var mutableData:NSMutableData = NSMutableData.alloc()
var currentElementName:NSString = ""
var foundCharacters = ""
var appParsedData = [Dictionary<String, String>]()
var currentDataDictionary = Dictionary<String, String>()
func parser(parser: NSXMLParser!, didStartElement elementName: String!, namespaceURI: String!, qualifiedName qName: String!, attributes attributeDict: NSDictionary!) {
currentElementName = elementName
}
func parser(parser: NSXMLParser, didEndElement elementName: String!, namespaceURI: String!, qualifiedName qName: String!) {
if !foundCharacters.isEmpty {
currentDataDictionary[currentElementName] = foundCharacters
foundCharacters = ""
//Last Element so add to main Dictionary
//Cannot find last element yet on XML so use Charge_GBP for testing until fixed
if currentElementName == "Charge_GBP" {
appParsedData.append(currentDataDictionary)
}
}
}
func parser(parser: NSXMLParser, foundCharacters string: String!) {
if (currentElementName == "Entry_ID") || (currentElementName == "Title") || currentElementName == "Description" || currentElementName == "Charge_USD" || currentElementName == "Charge_GBP" || currentElementName == "Classification_Type" {
foundCharacters += string
}
}
func parserDidEndDocument(parser: NSXMLParser!) {
self.setupItemsOnView()
}
那么我的 setupItemsOnView 函数是:
func setupItemsOnView() {
for (currentElementName) in appParsedData {
println("\(currentElementName):")
}
let test = appParsedData[0] as Dictionary<String, String>
let test_entryid = test["Entry_ID"]
println("Entry ID is \(test_entryid)")
}
呼,好的,所以基本上我可以在 setupItemsOnView 函数中获取值 Entry_ID、标题、描述、Charge_GBP 和 Charge_USD,但是使用此方法我无法获取分类和描述值以有意义的方式从分类 parent 返回。我目前正在使用你可以看到的字典来存储数据,所以我想知道当你有分层 XML 时使用字典是否正确,但我不知道还能尝试什么.
从我的背景来看,您可以使用点符号来引用 XML,并且只需围绕 parent 循环所有元素,但我无法在 swift,所以我只需要一种可用的方法来以我可以输出的形式取回所有数据。
如果您能提供任何有助于解决此问题的代码,我们将不胜感激。
干杯
D
您想要的是与 Swift 的 jaxb 相当的东西 -- 但我不知道它存在。无论如何,在 Swift 中进行解析类似于使用 SAX 解析器。据推测,您的 Swift 代码中有一个 class 层次结构,对应于 XML 中的元素层次结构。我使用的方法是有状态的——只需实例化对应于已解析元素的 class,并将其保存在为此目的指定的变量中。然后,您的解析代码可以填充 class 数据,因为它会在后续回调中遇到。当然,您必须分层执行此操作,并使用 didEndElement
回调来检测完成。