博文中的程序我貼在下面:
- filename readweb url %nrstr("http://detail.zol.com.cn/cell_phone_index/subcate57_list_s528_1.html") lrecl=60000;
- data tmp;
- infile readweb lrecl=60000 dlm="><";
- retain flag 0;
- length title1 $ 20;
- if flag=0 then do;
- title="手機(jī)名稱";
- input @'id="proName_' @'>' content :$50. @@;
- flag=1;
- num+1;
- if title="手機(jī)名稱" then title1="name";
- output;
- end;
- input @'<dd class="tit_new">' title :$50. @;
- if title="上市日期" then do;
- flag=0;
- end;
- input @'<dd class="con_new">' content :$50. @@;
- if scan(content,1,"=")="a href" then input content :$50. @@;
- if title="所屬系列" then title1="series";
- if title="操作系統(tǒng)" then title1="os";
- if title="手機(jī)類型" then title1="type";
- if title="網(wǎng)絡(luò)模式" then title1="net";
- if title="主屏尺寸" then title1="screen_size";
- if title="主屏色彩" then title1="screen_color";
- if title="觸摸屏:" then title1="screen_type";
- if title="攝像頭像" then title1="camera";
- if title="藍(lán)牙功能" then title1="bluetooth";
- if title="上市日期" then title1="date";
- output;
- drop flag;
- run;
- proc transpose data=tmp out=want(drop=_name_);
- var content;
- by num;
- id title1;
- run;
但是我運(yùn)行里面的程序之后sas會出現(xiàn)如下提示:
NOTE: 無法連接主機(jī)“detail.zol.com.cn”。請檢查主機(jī)名稱是否有效。
ERROR: 主機(jī)名“detail.zol.com.cn”沒有找到.
我試了下論壇中其他帖子中用的程序(每個程序都大同小異),都會出現(xiàn)這個問題,希望哪位大神能夠幫忙解決下,謝謝!