No 'do ... while()' syntax as yet.

Due to ambiguity, we've not yet added support for do .. while to Groovy

(source)

Then what would be the best way to do something like this:

def numRead = inputStream.read(fileBytes, 0, fileBytes.length);
do{

} while(numRead > 0);

(I know I can do that using a boolean, I just want to know if there's a "Groovy" way of doing it)

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

The groovy (version 1.8+) way would be like this:

inputStream.eachByte(BUFFER_SIZE) { buffer, numRead ->
    ...
}
link|improve this answer
Thanks, exactly what I was looking for. – talnicolas Nov 18 '11 at 21:52
feedback

Your Answer

 
or
required, but never shown

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