返回 导航

Swift

hangge.com

Swift - 解析JSON数据(内置JSONSerialization与第三方JSONKit)

作者:hangge | 2015-03-06 15:01
一,使用自带的JSONSerialization
苹果从IOS5.0后推出了SDK自带的JSON解决方案NSJSONSerialization。而自Swift3起,这个又改名成JSONSerialization。这是一个非常好用的JSON生成和解析工具,效率也比其他第三方开源项目高。

JSONSerialization能将JSON转换成Foundation对象,也能将Foundation对象转换成JSON,但转换成JSON的对象必须具有如下属性:
1,顶层对象必须是Array或者Dictionary
2,所有的对象必须是String、Number、Array、Dictionary、Null的实例
3,所有Dictionary的key必须是String类型
4,数字对象不能是非数值或无穷
注意:尽量使用JSONSerialization.isValidJSONObject先判断能否转换成功。

样例1:将对象转成json字符串,再转回来
import UIKit

class ViewController: UIViewController {
    
    override func viewDidLoad() {
        super.viewDidLoad()
        
        let label = UILabel(frame:CGRect(x:100, y:100, width:300, height:100))
        label.text = "输出结果在控制台"
        self.view.addSubview(label)
        //测试结果在output终端输入,也可以建个命令行应用测试就可以了
        testJson()
    }
    
    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
    }
    
    //测试json
    func testJson() {
        //Swift对象
        let user:[String: Any] = [
            "uname": "张三",
            "tel": ["mobile": "138", "home": "010"]
        ]
        //首先判断能不能转换
        if (!JSONSerialization.isValidJSONObject(user)) {
            print("is not a valid json object")
            return
        }
        //利用自带的json库转换成Data
        //如果设置options为JSONSerialization.WritingOptions.prettyPrinted,则打印格式更好阅读
        let data = try? JSONSerialization.data(withJSONObject: user, options: [])
        //Data转换成String打印输出
        let str = String(data:data!, encoding: String.Encoding.utf8)
        //输出json字符串
        print("Json Str:"); print(str)
        
        //把Data对象转换回JSON对象
        let json = try? JSONSerialization.jsonObject(with: data!,
                                            options:.allowFragments) as! [String: Any]
        print("Json Object:", json)
        //验证JSON对象可用性
        let uname = json?["uname"]
        let mobile = (json?["tel"] as! [String: Any])["mobile"]
        print("get Json Object:","uname: \(uname), mobile: \(mobile)")
    }
}
输出结果如下:
Json Str:
Optional({"uname":"张三","tel":{"home":"010","mobile":"138"}})
Json Object:
{
    tel =     {
        home = 010;
        mobile = 138;
    };
    uname = "\U5f20\U4e09";
}
get Json Object:
uname: 张三, mobile: 138

样例2:解析json字符串
(由于是字符串内容是json数组,则转成NSArray。如果字符串是json对象,则转成NSDictionary。)
let string = "[{\"ID\":1,\"Name\":\"元台禅寺\",\"LineID\":1},{\"ID\":2,\"Name\":\"田坞里山塘\",\"LineID\":1},{\"ID\":3,\"Name\":\"滴水石\",\"LineID\":1}]"
let data = string.data(using: String.Encoding.utf8)

let jsonArr = try! JSONSerialization.jsonObject(with: data!,
options: JSONSerialization.ReadingOptions.mutableContainers) as! [[String: Any]]

print("记录数:\(jsonArr.count)")
for json in jsonArr {
    print("ID:", json["ID"]!, "    Name:", json["Name"]!)
}
控制台输出如下:
  

二,使用第三方库 - JSONKit 
(JSONKit已经有多年不更新了,而且是使用OC写的。所以不推荐使用,第三方的话建议用下面介绍的SwiftyJSON)
1,新建桥街头文件Bridging-Header.h,并设置到编译参数里
#include "JSONKit.h"
2,将JSONKit的库文件导入到项目中来(JSONKit.h和JSONKit.m)
GitHub主页地址:https://github.com/johnezang/JSONKit
  
3,这时编译会发现报错,这是由于JSONKit库不支持Objective-C的自动引用计数功能导致。
需要在Build Phases -> Compile Sources -> JSONKit.m,双击添加Comipler Flag:-fno-objc-arc 。这样就完成了不支持自动引用计数的配置。
 

4,可能这时还是编译报错,这是由于库代码写的比较早。isa方法现在已经被废除。点击错误选择“Fix-it”自动修复下即可。


测试代码:
import UIKit

class ViewController: UIViewController {
    
    override func viewDidLoad() {
        super.viewDidLoad()
        testJson()
    }
    
    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
    }
    
    func testJson() {
        //Swift 字典对象
        let user:[String: Any] = [
            "uname": "user1",
            "tel": ["mobile": "138", "home": "010"]
        ]
        //使用 JSONKit 转换成为 JSON 字符串
        let jsonstring = (user as NSDictionary).jsonString()
        print(jsonstring);
        //由字符串反解析回字典
        print(jsonstring?.objectFromJSONString() as! NSDictionary)
        
        //使用 JSONKit 转换成为 NSData 类型的 JSON 数据
        let jsondata = (user as NSDictionary).jsonData() as NSData
        print(jsondata);
        //由NSData 反解析回为字典
        print(jsondata.objectFromJSONData() as! NSDictionary)
    }
}
输出结果:
{"uname":"user1","tel":{"home":"010","mobile":"138"}}
{
    tel =     {
        home = 010;
        mobile = 138;
    };
    uname = user1;
}
<7b22756e 616d6522 3a227573 65723122 2c227465 6c223a7b 22686f6d 65223a22 30313022 2c226d6f 62696c65 223a2231 3338227d 7d>
{
    tel =     {
        home = 010;
        mobile = 138;
    };
    uname = user1;
}
源码下载hangge_647.zip

三,使用第三方库 - SwiftyJSON(推荐) 
SwiftyJSON是个使用Swift语言编写的开源库,可以让我们很方便地处理JSON数据(解析数据、生成数据)
具体使用方法可以看我的这篇文章:http://www.hangge.com/blog/cache/detail_968.html
评论

全部评论(6)

回到顶部