What is the most effecient/elegant way of dumping a StringBuilder to a text file?
you can go:
outputStream.write(stringBuilder.toString().getBytes());
But is this efficient for a very long file?
Is there a better way?
|
|
What is the most effecient/elegant way of dumping a StringBuilder to a text file? you can go:
But is this efficient for a very long file? Is there a better way?
|
||||||
|
|
|
You could use the Apache Commons IO library, which gives you FileUtils:
|
||||
|
|
|
If the string itself is long, you definitely should avoid toString(), which makes another copy of the string. The most efficient way to write to stream should be something like this,
|
||||
|
|
|
As pointed out by others, use a Writer, and use a BufferedWriter, but then don't call EDIT: But, I see that you accepted a different answer because it was a one-liner. But that solution has two problems: One, it doesn't accept a java.nio.Charset. BAD. You should always specify a Charset explicitly. Two, it's still making you suffer a stringBuilder.toString(). If the simplicity is really what you're after, try the following from the Guava project: |
||||||||
|
|
|
Well, if the string is huge, To avoid this, you can extract chunk of the string and write it in separate parts. Here is how it may looks:
Hope this helps. |
||||||||||
|
|
|
For character data better use Note that your way of calling the non-arg |
|||
|
|
|
|
You should use a BufferedWriter to optimize the writes. If you weren't writing character data, you would use a BufferedOutputStream.
EDIT: As mentioned by BalusC, you should write character data using a Writer instead of an OutputStream. Since you're ultimately writing to a file, a better approach would be to write to the BufferedWriter more often instead of creating a huge StringBuilder in-memory and writing everything at the end (depending on your use-case, you might even be able to eliminate the StringBuilder entirely). Writing incrementally during processing will make better use of your limited I/O bandwidth, unless another thread is trying to read a lot of data from the disk at the same time you're writing. |
|||
|
|