The following code in Groovy adds GStrings to the list:

List<String> args = [ 'cmd', "-Dopt=${value}" ]

When I create a ProcessBuilder with this list, I get a ClassCastException. What's a groovy way to coerce the list elements to the correct type?

link|improve this question

77% accept rate
I added a comment about avoiding ProcessBuilder altogether to my answer (I am posting this incase you missed it)... It might save you some work :-) – tim_yates Jul 6 '11 at 8:04
feedback

3 Answers

up vote 5 down vote accepted

Or, you can do:

List<String> args = [ 'cmd', "-Dopt=${value}"] as String[]

or

List<String> args = [ 'cmd', "-Dopt=${value}"]*.toString()

actually, why are you using ProcessBuilder out of interest? Groovy adds ways to do process management, and even adds three execute methods to List

You can do (this is on OS X or Linux):

def opt = '-a'

println( [ 'ls', "$opt" ].execute( null, new File( '/tmp' ) ).text )

which prints out the files in my /tmp folder

link|improve this answer
Note that both do a bit too much work: The first one converts the initial List to a String[] and that back to a List, the second one creates a copy of the List as well and calls toString() on every element. – Joachim Sauer Jul 6 '11 at 7:26
1  
@Joachim Yeah, but they both look cleaner (IMHO) than embedding toString inside the list on specific elements (and it makes it less likely that you missed an element) – tim_yates Jul 6 '11 at 7:37
very true. Also this is highly unlikely to be the critical element on any code-path. – Joachim Sauer Jul 6 '11 at 7:40
ProcessBuilder also accepts a String[] - so the first alternative can be replaced to be: String[] args = [ 'cmd', "-Dopt=${value}"] as String[] – RonK Jul 6 '11 at 8:13
1  
@Aaron you can call consumeProcessOutput(OutputStream output, OutputStream error) on the Process object returned by execute() – tim_yates Jul 6 '11 at 8:27
show 2 more comments
feedback

I did a test:

def value = "abc"
List<String> args = [ 'cmd', "-Dopt=${value}"];

System.out.println (args.getClass());

System.out.println (args.get(0).getClass());
System.out.println (args.get(1).getClass());

The output was:

class java.util.ArrayList
class java.lang.String
class org.codehaus.groovy.runtime.GStringImpl

Changing the code a bit to be:

def value = "abc"
List<String> args = [ 'cmd', "-Dopt=${value}".toString()];

System.out.println (args.getClass());

System.out.println (args.get(0).getClass());
System.out.println (args.get(1).getClass());

produced this:

class java.util.ArrayList
class java.lang.String
class java.lang.String

Should do the trick, but I'm not 100% sure this is the best way to do it.

link|improve this answer
1  
Minor hint: I find System.out.println(args*.getClass()) to be easier to write and produce nicer output ;-) – Joachim Sauer Jul 6 '11 at 7:32
@Joachim, Cool! (or should I say, Groovy!) – RonK Jul 6 '11 at 7:37
feedback

Try

List<String> args = [ 'cmd', "-Dopt=${value}".toString() ]

because the later is a GString.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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