SAS中文论坛

标题: 请教:如何访问外部因特网上的数据? [打印本页]

作者: shiyiming    时间: 2004-1-15 12:53
标题: 请教:如何访问外部因特网上的数据?
<!-- s:idea: --><img src="{SMILIES_PATH}/icon_idea.gif" alt=":idea:" title="Idea" /><!-- s:idea: -->

问题如下:
   我需要访问外部因特网上的数据,如打开下面的网站地址http://info.my0578.com/info/lnzbdb.asp?stockcode=000920就可以出现一些表格和数据,
   现在我想用SAS读取上述网页上表格里的数据,不知该怎么实现?
请各位大虾赐教,谢谢!
作者: shiyiming    时间: 2004-1-15 13:02
补充一点,我试了一下用Excel的导入外部数据功能,将http://info.my0578.com/info/lnzbdb.asp?stockcode=000920粘贴过去,然后运行可以将相应数据导入到Excel里面。
我想请教的是,如何用sas程序读取上述数据。
作者: shiyiming    时间: 2004-1-17 11:11
Hi,

I have never work experience on fetch http or ftp files into SAS using SAS sysytem, but Hope the following sample helpful to you,

filename foo URL
      'http://www.sas.com:80/service/techsup/intro.html';
data _null_;
     infile foo length=len;
     input record $varying200. len;
     put record $varying200. len;
     if _n_=15 then stop;
run;

Another good example is available at
<!-- m --><a class="postlink" href="http://groups.google.com/groups?q=infile+http+group:comp.soft-sys.sas&amp;hl=en&amp;lr=&amp;ie=UTF-8&amp;group=comp.soft-sys.sas&amp;safe=off&amp;selm=83F5497995A8D511965F00508BB929700271F0BE%40ddsexmb01.cahwnet.gov&amp;rnum=4">http://groups.google.com/groups?q=infil ... gov&amp;rnum=4</a><!-- m -->
作者: shiyiming    时间: 2004-1-19 09:51
谢谢zibao

Happy New Year to everyone !

<!-- s:P --><img src="{SMILIES_PATH}/icon_razz.gif" alt=":P" title="Razz" /><!-- s:P -->




欢迎光临 SAS中文论坛 (http://mysas.net/forum/) Powered by Discuz! X3.2