vote up 3 vote down star
2

During my work with databases i noticed that i write query strings and in this strings i have to put several restrictions in the where-clause from a list/array/collection. Should looks like this:

select * from customer 
where customer.id in (34, 26, ..., 2);

You can simplify this by reducing this to the question that you have collection of strings and want to create a comma-separated list of this strings in just one string.

My approach i have used so far is something like that:

	String result = "";
	boolean first = true;
	for(String string : collectionOfStrings) {
		if(first) {
			result+=string;
			first=false;
		} else {
			result+=","+string;
		}
	}

But this is as you can see very ugly. You cannot see what happens there on the first look, especially when the constructed strings (like every SQL query) is getting complicated.

What is your (more) elegant way?

flag

Presumably the SQL shown above should actually look like this: select * from customer where customer.id in (34, 26, 2); – Don Oct 15 '08 at 17:27

14 Answers

vote up 8 vote down check

Since strings are immutable, you may want to use the StringBuilder class if you're going to alter the String in the code. The StringBuilder class can be seen as a mutable String object which allocates more memory when its content is altered.

The original suggestion in the question can be written more clearly and efficiently, by taking care of the redundant trailing comma:

    StringBuilder result = new StringBuilder();
    for(String string : collectionOfStrings) {
        result.append(string);
        result.append(",");
    }
    return result.substring(0, result.length() - 1) ;
link|flag
vote up 8 vote down

Use the Google Collections API join method:

Join.join(",", collectionOfStrings);
link|flag
Nowadays the class is called Joiner; google-collections.googlecode.com/svn/trunk/… – Jonik Nov 4 at 22:10
vote up 3 vote down

I think it's not a good idea contruct the sql concatenating the where clause values like you are doing :

SELECT.... FROM.... WHERE ID IN( value1, value2,....valueN)

Where valueX comes from a list of Strings.

First, if you are comparing Strings they must be quoted, an this it isn't trivial if the Strings could have a quote inside.

Second, if the values comes from the user,or other system, then a SQL injection atack is posible.

It's a lot more verbose but what you should do is create a String like this:

SELECT.... FROM.... WHERE ID IN( ?, ?,....?)

and then bind the variables with Statement.setString (nParameter,parameterValue)

link|flag
Yeah, of course you are right. This was just an example to illustrate the issue. In my project i use HQL from Hibernate for querying the database, which looks quite similar, but care about these security issues. But of course it is right to point this out. – Maerch Oct 18 '08 at 10:44
vote up 3 vote down

The way I write that loop is:

    StringBuilder buff = new StringBuilder();
    String sep = "";
    for (String str : strs) {
        buff.append(sep);
        buff.append(str);
        sep = ",";
    }
    return buff.toString();

Don't worry about the performance of sep. An assignment is very fast. Hotspot tends to peel off the first iteration of a loop anyway (as it often has to deal with odities such as null and mono/bimorphic inlining checks).

If you use it lots (more than once), put it in a shared method.

There is another question on stackoverflow dealing with how to insert a list of ids into an SQL statement.

link|flag
Should buf.append(sep) come before buff.append(str) ? – TomC Oct 15 '08 at 20:25
Yes. Fixed. I are ijiot. My excuse: repeatedly repeating even trivial code is error prone. – Tom Hawtin - tackline Oct 17 '08 at 13:40
One question because of the performance. Isn't the issue the creating of a new String object instead of the assignment? I don't know, just a question. – Maerch Oct 18 '08 at 10:39
String literals don't actually create a new String instance each time they are executed. A String object is created when the code is loaded, and the assignment statement is just a reference copy. In fact no matter how many ","s you have in your program they will all be the same instance. – Tom Hawtin - tackline Oct 18 '08 at 12:17
vote up 3 vote down

I just looked at code that did this today. This is a variation on AviewAnew's answer.

collectionOfStrings = /* source string collection */;
String csList = StringUtils.join(collectionOfStrings.toArray(), ",");
link|flag
vote up 2 vote down

I found the iterator idiom elegant, because it has a test for more elements (ommited null/empty test for brevity):

public static String convert(List<String> list) {
    String res = "";
    for (Iterator<String> iterator = list.iterator(); iterator.hasNext();) {
        res += iterator.next() + (iterator.hasNext() ? "," : "");
    }
    return res;
}
link|flag
Yeah, why not, but still not very readable. – Maerch Oct 18 '08 at 10:27
... and probably less efficient that the accepted solution, depending on how complex the 'hasNext()' call is. Besides, you should probably be using a StringBuilder rather than String concatenation. – Stephen C Jul 23 at 23:06
vote up 2 vote down

There's a lot of manual solutions to this, but I wanted to reiterate and update Julie's answer above. Use google collections Joiner class.

Joiner.on(", ").join(34, 26, ..., 2)

It handles var args, iterables and arrays and properly handles separators of more than one char (unlike gimmel's answer). It will also handle null values in your list if you need it to.

link|flag
vote up 1 vote down

I'm not sure how "sophisticated" this is, but it's certainly a bit shorter. It will work with various different types of collection e.g. Set<Integer>, List<String>, etc.

public static final String toSqlList(Collection<?> values) {

    String collectionString = values.toString();

    // Convert the square brackets produced by Collection.toString() to round brackets used by SQL
    return "(" + collectionString.substring(1, collectionString.length() - 1) + ")";
}

Exercise for reader: modify this method so that it correctly handles a null/empty collection :)

link|flag
But that's relying on the toString() output format, which I don't think is officially specified. Is it? – mmyers Oct 15 '08 at 17:23
You're right, toString() is not really part of a class' public API. But because people do rely on it (even though they shouldn't) the format is generally fixed. – Don Oct 15 '08 at 17:29
vote up 1 vote down

Just another method to deal with this problem. Not the most short, but it is efficient and gets the job done.

/**
 * Creates a comma-separated list of values from given collection.
 * 
 * @param <T> Value type.
 * @param values Value collection.
 * @return Comma-separated String of values.
 */
public <T> String toParameterList(Collection<T> values) {
   if (values == null || values.isEmpty()) {
      return ""; // Depending on how you want to deal with this case...
   }
   StringBuilder result = new StringBuilder();
   Iterator<T> i = values.iterator();
   result.append(i.next().toString());
   while (i.hasNext()) {
      result.append(",").append(i.next().toString());
   }
   return result.toString();
}
link|flag
vote up 1 vote down

There are some third-party Java libraries that provide string join method, but you probably don't want to start using a library just for something simple like that. I would just create a helper method like this, which I think is a bit better than your version, It uses StringBuffer, which will be more efficient if you need to join many strings, and it works on a collection of any type.

public static <T> String join(Collection<T> values)
{
	StringBuffer ret = new StringBuffer();
	for (T value : values)
	{
		if (ret.length() > 0) ret.append(",");
		ret.append(value);
	}
	return ret.toString();
}

Another suggestion with using Collection.toString() is shorter, but that relies on Collection.toString() returning a string in a very specific format, which I would personally not want to rely on.

link|flag
Yeah, third-libraries are inappropriate . And one problem is that it seems not flexible enough for for creating query strings. – Maerch Oct 18 '08 at 10:33
vote up 0 vote down

You may be able to use LINQ (to SQL), and you may be able to make use of the Dynamic Query LINQ sample from MS. http://weblogs.asp.net/scottgu/archive/2008/01/07/dynamic-linq-part-1-using-the-linq-dynamic-query-library.aspx

link|flag
That isn't java?! – Maerch Oct 18 '08 at 10:26
vote up 0 vote down

I am surprised by your use of "AND" in the first example you gave. Are you sure you didn't mean "OR" instead?

The way you've written it, there should be no rows that meet the criterion.

link|flag
Yes, of course. You are right. I was just looking for one example and didn't think about this! ;-) – Maerch Oct 18 '08 at 10:25
vote up 0 vote down

You could try

List collections = Arrays.asList(34, 26, "...", 2);
String asString = collection.toString();
// justValues = "34, 26, ..., 2"
String justValues = asString.substring(1, asString.length()-1);
link|flag
vote up 0 vote down

What makes the code ugly is the special-handling for the first case. Most of the lines in this small snippet are devoted, not to doing the code's routine job, but to handling that special case. And that's what alternatives like gimel's solve, by moving the special handling outside the loop. There is one special case (well, you could see both start and end as special cases - but only one of them needs to be treated specially), so handling it inside the loop is unnecessarily complicated.

link|flag

Your Answer

Get an OpenID
or

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