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 to copy data from several tables from SQL Server to Oracle. The
I have an ASP.NET Web Application that has several references set. I have Copy
I know there are several programs out there that will sync files over the
I have several R functions that save files to drop box (mainly plots). This
I have a Silverlight 2.0 site that works in dev. I have Copy Local
I have to copy a bunch of data from one database table into another.
Does anyone happen to have a copy of the Virtual TreeView that is Delphi5
In my Java application I have some copy-constructors like this public MyClass(MyClass src) {
I want to be able to click the button and have it copy this:
I have a background worker running to copy a huge file (several GBs) and

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.