如何在 NSURL 中使用特殊字符?
Posted
技术标签:
【中文标题】如何在 NSURL 中使用特殊字符?【英文标题】:How to use special character in NSURL? 【发布时间】:2015-05-10 07:50:56 【问题描述】:我的应用程序正在使用这样的 NSURL:
var url = NSURL(string: "http://www.geonames.org/search.html?q=Aïn+Béïda+Algeria&country=")
当我尝试像这样从这个 NSURL 获取数据时:
let task = NSURLSession.sharedSession().dataTaskWithURL(url!, completionHandler: (data: NSData!, response: NSURLResponse!, error: NSError!) -> Void in
if error == nil
var urlContent = NSString(data: data, encoding: NSUTF8StringEncoding)
println("urlContent \(urlContent!)")
else
println("error mode")
但我在尝试从该地址获取数据时出错,尽管当我使用 safari 时转到链接:“http://www.geonames.org/search.html?q=Aïn+Béïda+Algeria&country=" 我可以看到数据。我该如何解决?
【问题讨论】:
【参考方案1】:斯威夫特 2
let original = "http://www.geonames.org/search.html?q=Aïn+Béïda+Algeria&country="
if let encodedString = original.stringByAddingPercentEncodingWithAllowedCharacters(
NSCharacterSet.URLFragmentAllowedCharacterSet()),
url = NSURL(string: encodedString)
print(url)
编码后的 URL 现在是:
“http://www.geonames.org/search.html?q=A%C3%AFn+B%C3%A9%C3%AFda+Algeria&country=”
并且与NSURLSession
兼容。
斯威夫特 3
let original = "http://www.geonames.org/search.html?q=Aïn+Béïda+Algeria&country="
if let encoded = original.addingPercentEncoding(withAllowedCharacters: .urlFragmentAllowed),
let url = URL(string: encoded)
print(url)
【讨论】:
为什么是URLFragmentAllowedCharacterSet
?还有URLHostAllowedCharacterSet
、URLPasswordAllowedCharacterSet
、URLPathAllowedCharacterSet
、URLQueryAllowedCharacterSet
和URLUserAllowedCharacterSet
@fabb 我可以使用 URLQueryAllowedCharacterSet 来达到同样的效果,两个集合都是完整的。其他 URL 字符集是这两者的子集。
感谢您的信息。你有这些信息的来源吗?
来源是我自己的测试:和this snippet我已经比较了每个URL字符集的内容。可以看到结果here。
这段代码有两个问题: 1. 您应该永远一次编码整个查询字符串。某些字符被保留为查询字符串部分(&、= 等)之间的分隔符,如果构成这些查询部分的原始字符串包含任何这些字符,那么您的方法将非常糟糕。 2. 您应该使用 NSURLComponents 来构造查询字符串,而不是使用字符串连接。它更安全,而且完全不用担心字符集。以上是关于如何在 NSURL 中使用特殊字符?的主要内容,如果未能解决你的问题,请参考以下文章