« Return to Thread: How to detect End of file

Re: How to detect End of file

by Naftoli Gugenheim :: Rate this Message:

Reply to Author | View in Thread

I don't use netbeans, but why do you expect Ctrl-D to send an EOF? Does Netbeans do that for Java? Or is that what happens in a linux shell? (For windows command prompt it's Ctrl-Z)

-------------------------------------
nope n<kingofadr1_@...> wrote:




Hi everyone,



I have difficulties detecting the EOF
when I press ctrl-D at the netbeans output window.Here is the code I am using
for detecting eof when pressing ctrl-D:
def main(args: Array[String]) = {
    var line:String = ""
    do{
        line = readLine()
        println(line)
    }while(line != null)
  }

When using Ctrl + D, the loop doesn't end and the code that follows the loop is not executed.
thank you,Francisco Perez





_________________________________________________________________
Create a cool, new character for your Windows Liveā„¢ Messenger.
http://go.microsoft.com/?linkid=9656621

 « Return to Thread: How to detect End of file