iOS專案開發實戰——iOS網路程式設計獲取網頁Html原始碼

乞力馬紮羅的雪CYF發表於2015-08-11

       如今我們身處網際網路的時代,任何一個軟體或是App,都會或多或少與網路打交道,並不斷髮生資料互動。一個沒有涉及網路程式設計的應用會顯得比較low,這裡我們將會開始使用Swift開發iOS應用,並且主要來實現網路操作方面的功能。

      這裡的需求是獲取某個網頁的Html原始碼,即從網上獲取資料。具體實現如下:

(1)建立一個iOS專案,Language選擇Swift。然後在ViewController.swift中實現如下程式碼:

    override func viewDidLoad() {
        super.viewDidLoad()

        var str = NSString(contentsOfURL: NSURL(string: "http://www.baidu.com")!, encoding: NSUTF8StringEncoding, error: nil)
        println(str!)//上述返回的是Optional Type可選值,返回值有可能為空,在我確保有返回值的情況下,使用感嘆號!獲取該值;
    }

(2)執行程式,在控制檯列印結果:(百度主頁Html內容太多,我只複製出一部分)

<html>
    <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=Edge">
        <meta content="always" name="referrer">
        <meta name="theme-color" content="#2932e1">
        <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
        <link rel="search" type="application/opensearchdescription+xml" href="/content-search.xml" title="百度搜尋">
        <link rel="icon" sizes="any" mask="" href="//www.baidu.com/img/baidu.svg">
        <link rel="dns-prefetch" href="//s1.bdstatic.com">
        <link rel="dns-prefetch" href="//t1.baidu.com">
        <link rel="dns-prefetch" href="//t2.baidu.com">
        <link rel="dns-prefetch" href="//t3.baidu.com">
        <link rel="dns-prefetch" href="//t10.baidu.com">
        <link rel="dns-prefetch" href="//t11.baidu.com">
        <link rel="dns-prefetch" href="//t12.baidu.com">
        <link rel="dns-prefetch" href="//b1.bdstatic.com">
        <title>
            百度一下,你就知道
        </title>
        <style index="index" id="css_index" type="text/css">
html,body{height:100%}html{overflow-y:auto}#wrapper{position:relative;_position:;min-height:100%}#head{padding-bottom:100px;
        text-align:center;*z-index:1}#ftCon{height:100px;position:absolute;bottom:44px;text-align:center;width:100%;margin:0 auto;z-index:0;overflow:hidden}#ftConw{width:720px;margin:0 auto}body{font:12px arial;text-align:;background:#fff}body,p,form,ul,li{margin:0;padding:0;list-style:none}body,form,#fm{position:relative}td{text-align:left}img{border:0}a{color:#00c}a:active{color:#f60}.bg{background-image:url(http://s1.bdstatic.com/r/www/cache/static/global/img/icons_45de3f02.png);background-repeat:no-repeat;_background-image:url(http://s1.bdstatic.com/r/www/cache/static/global/img/icons_15f748ea.gif)}.bg_tuiguang_browser{width:16px;height:16px;background-position:-600px 0;display:inline-block;vertical-align:text-bottom;font-style:normal;overflow:hidden;margin-right:5px}.bg_tuiguang_browser_big{width:56px;height:56px;position:absolute;left:10px;top:10px;background-position:-600px -24px}
        .bg_tuiguang_weishi{width:56px;height:56px;position:absolute;left:10px;top:10px;background-position:-672px -24px}.c-icon{display:inline-block;width:14px;height:14px;vertical-align:text-bottom;font-style normal;overflow:hidden;background:url(http://s1.bdstatic.com/r/www/cache/static/global/img/icons_45de3f02.png) no-repeat 0 0;_background-image:url(http://s1.bdstatic.com/r/www/cache/static/global/img/icons_15f748ea.gif)}.c-icon-triangle-down-blue{background-position:-480px -168px}.c-icon-chevron-unfold2{background-position:-504px -168px}#m{width:720px;margin:0 auto}#nv a,#nv b,.btn,#lk{font-size:14px}input{border:0;padding:0}#nv{height:19px;font-size:16px;margin:0 0 4px;text-align:left;text-indent:137px}.s_btn{width:95px;height:32px;padding-top:2px\9;font-size:14px;background-color:#ddd;background-position:0 -48px;cursor:pointer}.s_btn_h{background-position:-240px -48px}.s_btn_wr{width:97px;height:34px;display:inline-block;background-position:-120px -48px;*position:relative;z-index:0;vertical-align:top}


        </style>
    </head>
    <body>
    </body>
</html>

     通過以上程式碼,我們就能從網頁上成功獲取原始碼。但是由於我在上述註釋中關於可選型的問題,我決定優化一下程式碼,就算網路資料訪問不成功或者出現為空有異常等等情況,也能反饋給使用者一個提示,優化程式碼如下,注意對Optional Type為空的操作。

    override func viewDidLoad() {
        super.viewDidLoad()

            var strHTML = NSString(contentsOfURL: NSURL(string: "111111")!, encoding: NSUTF8StringEncoding, error: nil)
        
        if let print = strHTML{
            println(strHTML!)
        
        }else{

            println("未能獲取網路資料")
            
        }
        
    }

執行以上程式碼,就能返回”未能獲取網路資料“的提示了。就算網路有異常系統也不會崩潰。


github主頁:https://github.com/chenyufeng1991  。歡迎大家訪問!

相關文章