Scalaファイルの読み込み

412 ワード

import scala.io.Source

object FileDemo extends App{
   val file = Source.fromFile("f:\\populate.sql")
   for(line <- file.getLines)
     println(line)
     
   //      
//   for(f <- file){
//     println(f)
//   }  
   
   val web = Source.fromURL("http://www.lztopic.com/archives/5567/","utf-8")
   for(line <- web.getLines){
      println(line)
   }
}