Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6701149
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T06:53:57+00:00 2026-05-26T06:53:57+00:00

I have a char* and the data length that I’m receiving from a library,

  • 0

I have a char* and the data length that I’m receiving from a library, and I need to pass the data to a function that takes an istream.

I know I can create a stringstream but that will copy all the data. And also, the data will surely have 0s since it’s a zip file, and creating a stringstream will take the data until the first 0 I think.

Is there any way to create an istream from a char* and it’s size without copying all the data?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T06:53:57+00:00Added an answer on May 26, 2026 at 6:53 am

    Here’s a non-deprecated method found on the web, has you derive your own std::streambuf class, but easy and seems to work:

    #include <iostream>
    #include <istream>
    #include <streambuf>
    #include <string>
    
    struct membuf : std::streambuf
    {
        membuf(char* begin, char* end) {
            this->setg(begin, begin, end);
        }
    };
    
    int main()
    {
        char buffer[] = "I'm a buffer with embedded nulls\0and line\n feeds";
    
        membuf sbuf(buffer, buffer + sizeof(buffer));
        std::istream in(&sbuf);
        std::string line;
        while (std::getline(in, line)) {
            std::cout << "line: " << line << "\n";
        }
        return 0;
    }
    

    Which outputs:

    line: I'm a buffer with embedded nullsand line
    line:  feeds
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a vector<set<char> > data structure (transactions database) and I want to know
I have a underlying API that passes a const char* and a length: foo(const
I have a void * , call it data , whose length I know,
I have a TCP socket client receiving messages (data) from a server. messages are
I have the following bit of code that reads data from the an Oracle
I have a char array data and a Int32 dictIdFrame. I would like that
I have taken char data into database into array. now i want to convert
I have a struct struct Packet { int senderId; int sequenceNumber; char data[MaxDataSize]; char*
I have two columns. ColA and ColB contains char(10) with data 20090520 and 20090521.
I have a big lump of binary data in a char[] array which I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.