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 8268945
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T06:03:53+00:00 2026-06-08T06:03:53+00:00

Which runs faster: using OutputStreamWriter.write() for each string to be written, or using StringBuilder

  • 0

Which runs faster: using OutputStreamWriter.write() for each string to be written, or using StringBuilder to create one large string, then using write() once? Please explain why.

Here’s using write() many times:

writer.write("Registered Players:\n");
while (it.hasNext()) {
    int playerID = (Integer) it.next();
    Player player = playerRegistry.get(playerID);

    writer.write(playerID+": "+player.getPlayerName()+"\n");
}

And here’s with StringBuilder:

builder.append("Registered Players:\n");
while (it.hasNext()) {
    int playerID = (Integer) it.next();
    Player player = playerRegistry.get(playerID);

    builder.append(playerID+": "+player.getPlayerName()+"\n");
}
writer.write(builder.toString());
  • 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-06-08T06:03:55+00:00Added an answer on June 8, 2026 at 6:03 am

    It all depends on which kind of OutputStream you’re writing to.

    If it’s writing to memory (ByteArrayOutputStream), it won’t make any difference.

    If you’re writing to a BufferedOutputStream, the stream will buffer your lines in memory and write the buffer once it’s full to the underlying stream, so it won’t make any difference either.

    If you’re writing to a FileOutputStream or a SocketOutputStream, buffering will lead to better performance. But buffering everything into memory could be a bad idea if the data to write is too big: it could need too much memory.

    The best thing to do is to use a buffered writer or stream, which will take care of buffering for you, transparently, and thus avoid too many low-level writes without having to buffer explicitely into a StringBuilder.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using PHPUnderControl which runs on top of Cruise Control for my continuous integration
I have a table which gets around 10-15k entries per minute. Each one is
In C#/VB.NET/.NET, which loop runs faster, for or foreach ? Ever since I read
I have a loop written in C++ which is executed for each element of
Which runs faster ... MIN or MAX in SQL Server? This will help me
Given a Cocoa application which runs on Mac OS X 10.7 and later: What
I have an applet which runs in a browser. I expect that when the
I have a code which runs on mac osx or on linux and I
There is a query which runs more slowly than I would like, but I
I have a program which runs an external, command line utility and reads the

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.