码迷,mamicode.com
首页 > 其他好文 > 详细

统计HDFS 上字节数据统计

时间:2015-11-21 18:35:51      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

class HDFSWordCount {
  def  main (args: Array[String]) {
    if (args.length > 0){
      for (line <- Source.fromFile(args(0)).getLines().toList)  //求最大长度
        println(line.length +" " +line)
    }
    else  Console.err.print("please enter fileName")
  }
  //对文件的每行记录打印格式的字符量化
  def widthOfLength(s: String) = s.length.toString.length
  if (args.length > 0){
    val lines = Source.fromFile(args(0)).getLines.toList
    val longetLine = lines.reduceLeft(
      (a, b) => if (a.length > b.length) a else b
    )
    val maxWidth = widthOfLength(longetLine)
    for (line <- lines){
      val numSpace = maxWidth widthOfLength(line)
      val padding = " " * numSpace
      println(padding +line.length + "|" +line)
    }
  }

}

 

统计HDFS 上字节数据统计

标签:

原文地址:http://www.cnblogs.com/zhanggl/p/4984285.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!