What's the Scala recipe for reading line by line from the standard input ? Something like the equivalent java code :

import java.util.Scanner; 

public class ScannerTest {
    public static void main(String args[]) {
        Scanner sc = new Scanner(System.in);
        while(sc.hasNext()){
            System.out.println(sc.nextLine());
        }
    }
}
link|improve this question

feedback

4 Answers

up vote 16 down vote accepted

the most straight-forward looking approach will just use readLine() which is part of Predef. however that is rather ugly as you need to check for eventual null value:

object ScannerTest {
  def main(args: Array[String]) {
    var ok = true
    while( ok ) {
      val ln = readLine()
      ok = ln != null
      if( ok ) println( ln )
    }
  }
}

this is so verbose, you'd rather use the java.util.Scanner instead.

i think a more pretty approach will use scala.io.Source:

object ScannerTest {
  def main(args: Array[String]) {
    for( ln <- io.Source.stdin.getLines ) println( ln )
  }
}
link|improve this answer
7  
Pleease let me work in Scala full time right now! – Martin Konicek Jan 11 '11 at 1:24
feedback

For the console you can use Console.readLine. You can write (if you want to stop on an empty line):

Iterator.continually(Console.readLine).takeWhile(_ != "").foreach(line => println("read " + line))
link|improve this answer
I know about Console.readLine(), I am looking for a given recipe . The "scala" way for reading line by line from Standard input . – Andrei Ciobanu Jan 3 '11 at 15:28
1  
I think you mean takeWhile(_ != null) – Seth Tisue Jan 4 '11 at 17:31
Depends how you want to stop. Looking for an empty line is often the simplest solution. – Landei Jan 4 '11 at 19:57
feedback
val input = Source.fromInputStream(System.in);
val lines = input.getLines.collect
link|improve this answer
feedback

Can you not use

var userinput = readInt // for integers
var userinput = readLine 
...

As available here : Scaladoc API

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.