How do you clear the string buffer in Java after a loop so the next iteration uses a clear string buffer?
feedback
|
|
One option is to use the delete method as follows:
Another option (bit cleaner) uses setLength(int len):
See Javadoc for more info: | |||||||||||||||||||||
feedback
|
|
I suggest creating a new | |||
|
feedback
|
|
The easiest way to reuse the
You may have the case like
| ||||
|
feedback
|