Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a few Set<String>s and want to transform each of these into a single String where each element of the original Set is separated by a whitespace " ". A naive first approach is doing it like this

Set<String> set_1;
Set<String> set_2;

StringBuilder builder = new StringBuilder();
for (String str : set_1) {
  builder.append(str).append(" ");
}

this.string_1 = builder.toString();

builder = new StringBuilder();
for (String str : set_2) {
  builder.append(str).append(" ");
}

this.string_2 = builder.toString();

Can anyone think of a faster, prettier or more efficient way to do this?

share|improve this question

4 Answers

up vote 3 down vote accepted

With commons/lang you can do this using StringUtils.join:

String str_1 = StringUtils.join(set_1, " ");

You can't really beat that for brevity

share|improve this answer
nice answer from a fellow taekwondoista. Thank you! – Lars Andren Jun 15 '10 at 9:04
1  
brief, but inflexible. I get "" substituted for null whether I want it or not, and don't have a skip nulls option... this is why we made Joiner for Guava (see other answer). – Kevin Bourrillion Jun 15 '10 at 21:42
I usually don't have nulls in my collections, so the brief approach is fine for me, but Guava rocks! Thanks for making that happen... – Sean Patrick Floyd Jun 16 '10 at 4:37
Since you don't expect nulls, you'd like your joiner to blow up if you did have a null -- which is what Guava's Joiner does by default. :-) – Kevin Bourrillion Jun 17 '10 at 21:53
ok, I'm sold. when is the first release version due? – Sean Patrick Floyd Jun 17 '10 at 22:30

As a counterpoint to Seanizer's commons-lang answer, if you're using Google's Guava Libraries (which I'd consider the 'successor' to commons-lang, in many ways), you'd use Joiner:

Joiner.on(" ").join(set_1);

with the advantage of a few helper methods to do things like:

Joiner.on(" ").skipNulls().join(set_1);
// If 2nd item was null, would produce "1, 3"

or

Joiner.on(" ").useForNull("<unknown>").join(set_1);
// If 2nd item was null, would produce "1, <unknown>, 3"

It also has support for appending direct to StringBuilders and Writers, and other such niceties.

share|improve this answer
What is the difference betweend guava-libraries and google collection library? – Shervin Jun 15 '10 at 10:04
the main difference is that guava knows about generics and commons/collections doesn't, but apart from that: they are two different libraries written by two different teams that solve some similar problems (and some non-similar ones) using different approaches – Sean Patrick Floyd Jun 15 '10 at 11:39
2  
@seanizer, Shervin was asking about guava vs google-collections, not guava vs commons :) Shervin - guava is simply the replacement for google-collections. As the project increased in scope, it stopped being limited to collections-only things so a name change was in order. google-collections should basically be considered deprecated, guava is a drop-in replacement with bug fixes + more features. – Cowan Jun 15 '10 at 21:02
oops, sorry. misread that – Sean Patrick Floyd Jun 16 '10 at 4:33

I'm confused about the code replication, why not factor it into a function that takes one set and returns one string?

Other than that, I'm not sure that there is much that you can do, except maybe giving the stringbuilder a hint about the expected capacity (if you can calculate it based on set size and reasonable expectation of string length).

There are library functions for this as well, but I doubt they're significantly more efficient.

share|improve this answer
Thanks for your answer! I didn't put it into a separate function to highlight the fact that I am trying to reuse the 'builder'-variable. Maybe that doesn't matter? – Lars Andren Jun 15 '10 at 1:52
2  
It doesn't matter. Repurposing variables can actually get you into trouble down the line. Instead, just have variables go out of scope when they're no longer needed. – Gunslinger47 Jun 15 '10 at 2:07
@Gunslinger, I see, thanks! @Uri, thanks for the initial capacity tips. – Lars Andren Jun 15 '10 at 2:08
1  
@Lars, there are cases where reuse makes sense but in others it is better to dump and start from scratch. I'm not sure what's better here. You could write a utility class that has an instance variable builder that is shared. One advantage for one-builder-per-run is that you could convert a large number of sets in parallel with multiple threads. – Uri Jun 15 '10 at 2:13

I use this method:

public static String join(Set<String> set, String sep) {
    String result = null;
    if(set != null) {
        StringBuilder sb = new StringBuilder();
        Iterator<String> it = set.iterator();
        if(it.hasNext()) {
            sb.append(it.next());
        }
        while(it.hasNext()) {
            sb.append(sep).append(it.next());
        }
        result = sb.toString();
    }
    return result;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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