3
votes
2answers
793 views
Groovy executing shell commands
Groovy adds the execute method to String to make executing shells fairly easy;
println "ls".execute().text
but if an error happens, then there is no resulting outp …
4
votes
6answers
2k views
Getting Groovy’s Grape Going!!!
I've tried to use the new Groovy Grape capability in Groovy 1.6-beta-2 but I get an error message;
unable to resolve cl …
1
vote
4answers
221 views
How to render ‘how long ago something happened’ using Groovy or Grails?
I would like a method/closure which works like this
println TimeDifference.format( System.currentMilliSeconds()-1000*60*60*24*7*6 )
and prints
1 …
0
votes
2answers
208 views
groovy static class
What does the 'static' do in this file, sample.groovy?
static class froob {
}
The groovy code compiles fine with 'static' or without it.
…
1
vote
3answers
313 views
java/groovy socket write timeout
I have a simple badly behaved server (written in Groovy)
ServerSocket ss = new ServerSocket(8889);
Socket s = ss.accept()
Thread.sleep(1000000)
And a client who I …
2
votes
Groovy executing shell commands
Ok, solved it myself;
def sout = new StringBuffer(), serr = new StringBuffer()
def proc = 'ls /badDir'.execute()
proc.consumeProcessOutput(sout, serr)
proc.waitForOrKill(1000)
print …
0
votes
Getting Groovy’s Grape Going!!!
Ok. Seems like this a short working demo (running from the groovyConsole)
groovy.grape.Grape.initGrape()
@Grab(group='com.jidesoft', module='jide-oss', version='[2.2.1,2.3.0)')
publ …
2
votes
1
vote
How can I join lines in a CSV file when one of the fields has a newline?
This might be too simple (or not handle the general case well enough),
def input = """foo,bar,n
,a,bc,d
one,two,three
,a,bc,d"""
def last
input.eachLine {
if(it.startsWith(',') …
0
votes
How do I include jars in a groovy script?
You can also try out Groovy Grape. It lets you use annotations to modify the classpath. Its experimental right now, but pretty cool. See …
