URL 和 NSURL 格式解析
字數(shù)973閱讀46評論0喜歡0
1. URL 是什么?
統(tǒng)一資源定位符(Uniform Resource Locator,縮寫為URL)椿每,又叫做網(wǎng)頁地址环揽,是互聯(lián)網(wǎng)上標準的資源的地址(Address)岔留÷故瘢互聯(lián)網(wǎng)上的每個文件都有一個唯一的URL箕慧,它包含的信息指出文件的位置以及瀏覽器應該怎么處理它。
統(tǒng)一資源定位符:
定位資源
確定資源出自哪里(可以用什么方式解析)
2. URL 定義格式
注意茴恰,Windows 主機不區(qū)分 URL 大小寫销钝,但是,Unix/Linux 主機區(qū)分大小寫琐簇。
url 的基本定義:
// url 編碼格式foo://example.com:8042/over/there?name=ferret#nose? \_/ \______________/ \________/\_________/ \__/|? ? ? ? |? ? ? ? ? ? ? |? ? ? ? |? ? ? ? |scheme? ? authority? ? ? ? path? ? query? fragment
URL由三部分組成:資源類型、存放資源的主機域名、資源文件名
scheme://host.domain:port/path/filenamescheme - 定義因特網(wǎng)服務的類型婉商。最常見的類型是 httphost - 定義域主機(http 的默認主機是 www)domain - 定義因特網(wǎng)域名似忧,比如 w3school.com.cn:port - 定義主機上的端口號(http 的默認端口號是80)path - 定義服務器上的路徑(如果省略,則文檔必須位于網(wǎng)站的根目錄中)丈秩。filename - 定義文檔/資源的名稱
常見的 scheme
file? ? ? 資源是本地計算機上的文件盯捌。格式file://ftp? ? ? ? 通過 FTP訪問資源。格式 FTP://gopher? ? 通過 Gopher 協(xié)議訪問該資源蘑秽。 http? ? ? 通過 HTTP 訪問該資源饺著。 格式 HTTP://https? ? ? 通過安全的 HTTPS 訪問該資源。 格式 target=_blank>HTTPS://mailto? ? 資源為電子郵件地址肠牲,通過 SMTP 訪問幼衰。 格式 mailto:MMS? ? ? ? 通過 支持MMS(流媒體)協(xié)議的播放該資源。(代表軟件:Windows Media Player)格式 MMS://ed2k? ? ? 通過 支持ed2k(專用下載鏈接)協(xié)議的P2P軟件訪問該資源缀雳。(代表軟件:電驢) 格式 ed2k://Flashget? 通過 支持Flashget:(專用下載鏈接)協(xié)議的P2P軟件訪問該資源渡嚣。(代表軟件:快車) 格式 Flashget://thunder? ? 通過 支持thunder(專用下載鏈接)協(xié)議的P2P軟件訪問該資源。(代表軟件:迅雷) 格式 thunder://news? ? ? 通過 NNTP 訪問該資源肥印。
常見的URL中定位和標識的服務或文件:
http:? ? ? ? 文件在WEB服務器上.
file:? ? ? ? 文件在您自己的局部系統(tǒng)或匿名服務器上
ftp:? ? ? ? 文件在FTP服務器上
gopher:? ? ? 文件在gopher服務器上
wais:? ? ? ? 文件在wais服務器上
news:? ? ? ? 文件在Usenet服務器上
telnet:? ? ? 連接到一個支持Telnet遠程登錄的服務器上
3. NSURL
NSURL 繼承自 NSObject, NSURL 就是對統(tǒng)一資源定位符的數(shù)據(jù)封裝识椰。包含的也就是組成 url 的三部分信息。
NSURL相關屬性
publicvarabsoluteString:String{get}? ? publicvarrelativeString:String? {get}// The relative portion of a URL.? If baseURL is nil, or if the receiver is itself absolute, this is the same as absoluteString@NSCopyingpublicvarbaseURL:NSURL? {get}// may be nil.@NSCopyingpublicvarabsoluteURL:NSURL{get}// if the receiver is itself absolute, this will return self./* Any URL is composed of these two basic pieces.? The full URL would be the concatenation of [myURL scheme], ':', [myURL resourceSpecifier]
*/publicvarscheme:String{get}? ? publicvarresourceSpecifier:String{get}/* If the URL conforms to rfc 1808 (the most common form of URL), the following accessors will return the various components; otherwise they return nil.? The litmus test for conformance is as recommended in RFC 1808 - whether the first two characters of resourceSpecifier is @"http://".? In all cases, they return the component's value after resolving the receiver against its base URL.
*/publicvarhost:String? {get}@NSCopyingpublicvarport:NSNumber? {get}? ? publicvaruser:String? {get}? ? publicvarpassword:String? {get}? ? publicvarpath:String? {get}? ? publicvarfragment:String? {get}? ? publicvarparameterString:String? {get}? ? publicvarquery:String? {get}? ? publicvarrelativePath:String? {get}// The same as path if baseURL is nil/* Determines if a given URL string's path represents a directory (i.e. the path component in the URL string ends with a '/' character). This does not check the resource the URL refers to.
*/@available(iOS9.0, *)? ? publicvarhasDirectoryPath:Bool{get}