json - 如何在 Swift 中解码 HTML 实体?

我正在从一个站点提取一个 JSON 文件,收到的字符串之一是:

The Weeknd ‘King Of The Fall’ [Video Premiere] | @TheWeeknd | #SoPhi

如何将 之类的内容转换为正确的字符?

我制作了一个 Xcode Playground 来演示它:

import UIKit

var error: NSError?
let blogUrl: NSURL = NSURL.URLWithString("http://sophisticatedignorance.net/api/get_recent_summary/")
let jsonData = NSData(contentsOfURL: blogUrl)

let dataDictionary = NSJSONSerialization.JSONObjectWithData(jsonData, options: nil, error: &error) as NSDictionary

var a = dataDictionary["posts"] as NSArray

println(a[0]["title"])

最佳答案

此答案最后一次修改为 Swift 5.2 和 iOS 13.4 SDK。


没有直接的方法可以做到这一点,但您可以使用 NSAttributedString 魔法让此过程尽可能轻松(请注意,此方法也会删除所有 HTML 标记)。

记住只从主线程初始化NSAttributedString。它使用 WebKit 来解析下面的 HTML,因此需要。

// This is a[0]["title"] in your case
let htmlEncodedString = "The Weeknd <em>&#8216;King Of The Fall&#8217;</em>"

guard let data = htmlEncodedString.data(using: .utf8) else {
    return
}

let options: [NSAttributedString.DocumentReadingOptionKey: Any] = [
    .documentType: NSAttributedString.DocumentType.html,
    .characterEncoding: String.Encoding.utf8.rawValue
]

guard let attributedString = try? NSAttributedString(data: data, options: options, documentAttributes: nil) else {
    return
}

// The Weeknd ‘King Of The Fall’
let decodedString = attributedString.string
extension String {

    init?(htmlEncodedString: String) {

        guard let data = htmlEncodedString.data(using: .utf8) else {
            return nil
        }

        let options: [NSAttributedString.DocumentReadingOptionKey: Any] = [
            .documentType: NSAttributedString.DocumentType.html,
            .characterEncoding: String.Encoding.utf8.rawValue
        ]

        guard let attributedString = try? NSAttributedString(data: data, options: options, documentAttributes: nil) else {
            return nil
        }

        self.init(attributedString.string)

    }

}

let encodedString = "The Weeknd <em>&#8216;King Of The Fall&#8217;</em>"
let decodedString = String(htmlEncodedString: encodedString)

https://stackoverflow.com/questions/25607247/

相关文章:

javascript - 无法使用 "-"破折号访问 JSON 属性

javascript - 如何使用 html 表单数据发送 JSON 对象

javascript - 是否有任何可公开访问的 JSON 数据源来测试真实世界的数据?

c# - ASP.NET Core 返回带有状态码的 JSON

json - 如何使用标准 Scala 类在 Scala 中解析 JSON?

sql-server - 在 SQL 中解析 JSON

javascript - JSON.parse 意外字符错误

android - 将 ArrayList 转换为 JSONArray

json - curl json 通过终端向 Rails 应用程序发布请求

python - UnicodeDecodeError : 'utf8' codec can't d