Welcome to Scala version 2.9.2 (Java HotSpot(TM) Server VM, Java 1.7.0_09).
Type in expressions to have them evaluated.
Type :help for more information.
scala> import scala.io.Source
import scala.io.Source
scala> Source.fromFile("xorg.conf").getLines.foreach(println)
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "AccelMethod" "sna"
Option "TearFree" "true"
EndSection
Вот так просто, в две строки, мы считали весь файл.
Type in expressions to have them evaluated.
Type :help for more information.
scala> import scala.io.Source
import scala.io.Source
scala> Source.fromFile("xorg.conf").getLines.foreach(println)
Section "Device"
Identifier "Intel Graphics"
Driver "intel"
Option "AccelMethod" "sna"
Option "TearFree" "true"
EndSection
Вот так просто, в две строки, мы считали весь файл.
Комментарии
Отправить комментарий