摘要:
1 /** 2 * Created by Edward on 2016/6/30. 3 */ 4 public class TestEnum { 5 6 //方法一 7 public enum SexEnum{ 8 MALE,FEMALE; 9 } 10 11 //方法二 12 public enum SexE... 阅读全文
摘要:
官方手册:http://hbase.apache.org/book.html#mapreduce.example 简单的操作,将hbase表中的数据写入到文件中。 RunJob 源码: MyMapper代码: MyReducer代码: 阅读全文