How do I iterate over all bytes in an inputStream using Groovy, given that it lacks a do-while statement?

后端 未结 3 1351
耶瑟儿~
耶瑟儿~ 2021-01-04 03:17

Given that Groovy does not have a do-while statement, how can I iterate over all bytes in an input stream?

Per a previous version of the Groovy user guide:

相关标签:
3条回答
  • 2021-01-04 03:49

    I know that's an old and already answered question. But it's the 1st what pops up for 'groovy do while' when googled.

    I think general considerable do-while synonym in Groovy could be:

    while ({
        ...
    
        numRead > 0
    }()) continue
    

    Please consider the above example. Except some 'redundant' brackets it's rather well readable syntax.

    And here's how does it work:

    1. inside of the while condition round brackets a closure is defined with curly bracket open
    2. the closure gets executed inline with inner round brackets pair after curly bracket close
    3. value of the last line inside the closure is the value which will break the loop when false (it's being returned from the closure)
    4. continue after while condition closing round bracket is only because there has to be 'something', any compilable statement. For example it could be 0, though continue seems to fit much better.

    EDIT: Not sure is it a newer version of Groovy or I've missed that before. Instead continue semicolon will do as well. Then it goes like:

    while ({
        ...
    
        numRead > 0
    }());
    
    0 讨论(0)
  • 2021-01-04 03:57

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

    inputStream.eachByte(BUFFER_SIZE) { buffer, numRead ->
        ...
    }
    
    0 讨论(0)
  • 2021-01-04 04:09

    use this:

    for(;;){ // infinite for
        ...
    
        if( numRead == 0 ){ //condition to break, oppossite to while 
            break
        }
    }
    
    0 讨论(0)
提交回复
热议问题