I recently encountered an idiom I haven't seen before: string assembly by StringWriter and PrintWriter. I mean, I know how to use them, but I've always used StringBuilder. Is there a concrete reason for preferring one over the other? The StringBuilder method seems much more natural to me, but is it just style?

I've looked at several questions here (including this one which comes closest: http://stackoverflow.com/questions/602279/stringwriter-or-stringbuilder ), but none in which the answers actually address the question of whether there's a reason to prefer one over the other for simple string assembly.

This is the idiom I've seen and used many many times: string assembly by StringBuilder:


    public static String newline = System.getProperty("line.separator");
    public String viaStringBuilder () {
       StringBuilder builder = new StringBuilder();
       builder.append("first thing" + newline);
       builder.append("second thing" + newline);
       // ... several things
       builder.append("last thing" + newline);
       return builder.toString();
    }

And this is the new idiom: string assembly by StringWriter and PrintWriter:


    public String viaWriters() {
       StringWriter stringWriter = new StringWriter();
       PrintWriter printWriter = new PrintWriter(stringWriter);
       printWriter.println("first thing");
       printWriter.println("second thing");
       // ... several things
       printWriter.println("last thing");
       printWriter.flush();
       printWriter.close();
       return stringWriter.toString();
    }

Edit It appears that there is no concrete reason to prefer one over the other, so I've accepted the answer which best matches my understanding, and +1ed all the other answers. In addition, I posted an answer of my own, giving the results of the benchmarking I ran, in response to one of the answers. Thanks to all.

link|improve this question

You should not use builder.append("first thing" + newline). The problem is that there's an extra String allocation which is not needed (it first creates "first thing\n" and then copies the string data to the builder). Instead, do it like this: builder.append("first thing").append(newline). This directly copies "first thing" to the builder and then newline. Of couse, StringBuilder should only be used if the number of things is not constant (e.g. it's in a loop), javac already optimizes "a" + "b" + "c" into new StringBuilder().append("a").append("b").append("c").toString(). – robinst Feb 28 at 14:20
feedback

5 Answers

up vote 3 down vote accepted

Stylistically, the StringBuilder approach is cleaner. It is fewer lines of code and is using a class that was specifically designed for the purpose of building strings.

The other consideration is which is more efficient. The best way to answer that would be to benchmark the two alternatives. But there are some clear pointers that StringBuilder should be faster. For a start, a StringWriter uses a StringBuilder StringBuffer under the hood to hold the characters written to the "stream".

link|improve this answer
Thanks, I definitely agree about the style. Good point about StringWriter using a StringBuilder. I really should have just asked the code. – CPerkins Jun 5 '10 at 15:11
Actually, StringWriter seems to use a StringBuffer, not a StringBuilder. That introduces synchronization, which doesn't seem needed in this case. – CPerkins Jun 5 '10 at 15:22
Probably a backwards compatibility issue as StringBuilder was introduced in Java 1.5 and with the StringWriter API already bedded down it would have been too late to change it. – krock Jun 5 '10 at 15:45
@user353852 I can see why they'd have thought that, but I disagree. The StringBuffer is private, and only appears in one public method: getBuffer(), which could easily be reimplemented to return a StringBuilder as a StringBuffer. – CPerkins Jun 5 '10 at 16:27
@CPerkins: There is a compatibility issue. Some applications may have relied on the internal synchronization characteristics of StringWriter (provided by the StringBuffer) when using the same instance on multiple threads. – Kevin Brock Jun 7 '10 at 5:08
show 3 more comments
feedback

StringWriter is what you use when when you want to write to a string, but you're working with an API that expects a Writer or a Stream. It's not an alternative, it's a compromise: you use StringWriter only when you have to.

link|improve this answer
Thanks, and that does make sense, but I've found this widely used in a codebase written by a set of very smart people - actually, on average, they seem to be the smartest I've ever worked with. So I'm looking for reasons they might have done it. – CPerkins Jun 5 '10 at 16:24
feedback

Okay, since the answers seem to stress the stylistic reasons for preferring one over the other, I decided to gen up a timing test.

I followed my usual benchmarking scheme: call the methods several (1000 in this case) times first to give the optimizer time to warm up, then call each a large number of times (100,000 in this case) in alternating sequence, so that any changes in the workstation's runtime environment are more fairly distributed, and run the test itself several times and average the results.

Oh, and of course the number of lines created and the length of the lines is randomized but held to be the same for each pair of calls, because I wanted to avoid any possible effects of buffer size or line size on the results.

The code for this is here: http://pastebin.com/vtZFzuds

TL,DR? The average results for 100,000 calls to each method are nearly identical:

  • 18,990 ms for 100,000 calls to the StringBuilder method (0.019 ms per call); and
  • 17,237 ms for 100,000 calls to the PrintWriter(StringWriter) method (0.017 ms per call).

That's so close that the timing is irrelevant to me, and I'm going to continue doing things the way I always did: StringBuilder, for stylistic reasons. Of course, while working in this established and mature codebase, I'll keep to the existing conventions, in order to minimize surprise.

link|improve this answer
feedback

Writers - PrintWriter writes to a stream. It does weird things like suppressing IOExceptions. System.out is one of these. - StringWriter is a Writer that writes to a StringBuffer (similar to ByteArrayOutputStream for OutputStreams)

StringBuilder - and of course StringBuilder is what you want if you are simply want to constructs strings in memory.

Conclusion

Writers by design are meant to push character data out a stream (usually to a file or through a connection) so being able to use Writers to simply assemble strings seems to be a bit of a side effect.

StringBuilder (and its synchronized sibling StringBuffer) are designed to assemble strings (read string bashing). If you look at the StringBuilder API you can see thatnot only can you do vanilla appending but also replace, reverse, insert etc. StringBuilder is your String construction friend.

link|improve this answer
Thanks, yes, I understand what they each do. But I've come across this new (to me) idiom in code written by some very smart people, and I'm wondering if they had a good reason to prefer it. – CPerkins Jun 5 '10 at 15:12
OK, no problem I have added a conclusion section to the answer. – krock Jun 5 '10 at 15:40
So your reason is basically stylistic: it relies on the notion that StringBuilder's intention is to manipulate strings, while the ability to do so with the Writers is a side effect. – CPerkins Jun 5 '10 at 16:28
feedback

I see two advantages of the PrintWriter method: (1) You don't have to add " + newline" at the end of every single line, which actually results in shorter code if you have a lot of writing to do. (2) You don't have to call System.getProperty(); you let the PrintWriter worry about what the newline character should be.

link|improve this answer
Good thoughts. I'm not as worried about having to call System.getProperty(), as it's a one-time cost which amortizes to zero if, as you say, you're writing a lot of code. Definitely a good point about having to + newline with StringBuilder, though. – CPerkins Oct 23 '10 at 14:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.