Welcome to tiger's blog!

What lead to success, what we are seeking...
posts - 47, comments - 23, trackbacks - 0, articles - 8
   :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理
#include "afxinet.h"
具体代码
CInternetSession session;
CInternetFile* file = NULL;
try
{
file = (CInternetFile*)session.OpenURL("http://news.sina.com.cn");
}
catch(CInternetException* m_pException)
{
file = NULL;
m_pException->Delete();
return FALSE;
}
CStdioFile dataStore;
if(file)
{
CString somecode;
CString ls_return;
while (file->ReadString (somecode)!=NULL)
ls_return = ls_return+somecode;
file->Close();

}

ls_return就是那个值

只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理