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

  • Home
  • SEARCH
  • 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 3316706
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T22:30:04+00:00 2026-05-17T22:30:04+00:00

I have to copy several bytes from a istream to a ostream , there

  • 0

I have to copy several bytes from a istream to a ostream, there are 2 ways that I know to perform this copy.

myostream << myistream.rdbuf();

and

copy( istreambuf_iterator<char>(myistream),
      istreambuf_iterator<char>(),
      ostreambuf_iterator<char>(myostream)
);

I’ve found that rdbuf version is at least twice as fast as the copy.
I haven’t found yet the way of copying just, say 100 bytes, but as the size to be copied will probably be quite big I would like to be able to use the rdbuf version if posible.

How to limit those copies to a given number of bytes?

  • 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-17T22:30:05+00:00Added an answer on May 17, 2026 at 10:30 pm

    Can you use 0x? If so, then you can use copy_n:

    copy_n( istreambuf_iterator<char>(myistream),
            100,
            ostreambuf_iterator<char>(myostream)
    );
    

    EDIT 1:

    I know you’re probably looking for a library solution, and you could probably have figured this out on your own. But in case you haven’t thought of something like this, here’s what I would do(if I didn’t have copy_n):

    void stream_copy_n(std::istream & in, std::size_t count, std::ostream & out)
    {
        const std::size_t buffer_size = 4096;
        char buffer[buffer_size];
        while(count > buffer_size)
        {
            in.read(buffer, buffer_size);
            out.write(buffer, buffer_size);
            count -= buffer_size;
        }
    
        in.read(buffer, count);
        out.write(buffer, count);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an ASP.NET Web Application that has several references set. I have Copy
I have a directory with several subdirectories with files. How can I copy all
I have a copy of emacs that I use on a couple of different
I have to copy quite a lot of files from one folder to another.
I have an encryption/copy protection question. I'm writing an application for a company that
I have been able to copy the raw data from an otherwise inaccessible USB
I have an Ant script that performs a copy operation using the 'copy' task
I have several old 3.5in floppy disks that I would like to backup. My
I have several working copies that were checked out of old repositories. The old
I have made this mistake several times, and found myself referencing This Post every

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.