请问是SAS的哪个版本?我用SAS8.1则不能实现。
82 /*命名你需要读入的网页*/
183 filename etf url 'http://www.shibor.org/shibor/web/html/shibor.html' RECFM=v lrecl=1000;
184
185 /*读入此网页所有内容到变长字段content中*/
186 data temp01;
187 file _webout;
188 infile etf length=len;
189 length content $32766. ;
190 input content $varying32766. len;
191 run;
NOTE: The file _WEBOUT is:
File Name=C:\Documents and Settings\Administrator\_webout.dat,
RECFM=V,LRECL=256
ERROR: Service httpd not found.