Oktatás * Programozás 2 * Szkriptnyelvek * levelezősök Félévek Linkek * kalendárium |
Scala /
get the HTML source of a webpage
Fetching the content of a webpage is similar to reading the content of a file: import scala.io.Source def main() { val url = "http://www.scala-lang.org" val src = Source.fromURL(url, "utf-8") val html = src.mkString src.close println(html) } |
Blogjaim, hobbi projektjeim * The Ubuntu Incident [ edit ] |