How to download webpage into string without saving this page to disk in C++?

URLDownloadToFile MSDN function only saving page into disk.

link|improve this question
feedback

1 Answer

Did you look up the other URLXXX functions mentioned thereof? How about: URLOpenBlockingStream?

//implement filestream that derives from IStream
class StringStream : public IStream
{
  StringStream(std::wstring buf) 
    {
        _refcount = 1;
        _mBuf = buf;
    }

    ~ StringStream ()
    {

    }
   // implement IUknown, IStream interfaces
   private:
    std::wstring _mBuf;
    long _refcount;
 };

See the default file based IStream implementation here.

link|improve this answer
But how to read that IStream to string? I got IStream* pStream; string text; URLOpenBlockingStream(NULL, "mysexyserver.com/text.txt";, &pStream, 0, NULL); text = istream2String(pStream); cout << text << endl; This not works – user188647 Oct 12 '09 at 21:06
You need to implement your own IStream (it's just an interface) over a string. – dirkgently Oct 12 '09 at 21:37
feedback

Your Answer

 
or
required, but never shown