欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Hbase Java API 介绍及使用示例

程序员文章站 2022-07-15 15:58:43
...
几个相关类与HBase数据模型之间的对应关系
java类 HBase数据模型
HBaseAdmin 数据库(DataBase)
HBaseConfiguration
HTable 表(Table)
HTableDescriptor 列族(Column Family)
Put 列修饰符(Column Qualifier)
Get
Scanner

一、HBaseConfiguration
关系:org.apache.hadoop.hbase.HBaseConfiguration
作用:对HBase进行配置
返回值 函数 描述
void addResource(Path file) 通过给定的路径所指的文件来添加资源
void clear() 清空所有已设置的属性
string get(String name) 获取属性名对应的值
String getBoolean(String name, boolean defaultValue) 获取为boolean类型的属性值,如果其属性值类型部位boolean,则返回默认属性值
void set(String name, String value) 通过属性名来设置值
void setBoolean(String name, boolean value) 设置boolean类型的属性值
用法示例:

  1. HBaseConfiguration hconfig = new HBaseConfiguration();
  2. hconfig.set(“hbase.zookeeper.property.clientPort”,”2181”);

复制代码





  该方法设置了”hbase.zookeeper.property.clientPort”的端口号为2181。一般情况下,HBaseConfiguration会使用构造函数进行初始化,然后在使用其他方法。

二、HBaseAdmin
关系:org.apache.hadoop.hbase.client.HBaseAdmin
作用:提供了一个接口来管理HBase数据库的表信息。它提供的方法包括:创建表,删除表,列出表项,使表有效或无效,以及添加或删除表列族成员等。
返回值 函数 描述
      void addColumn(String tableName, HColumnDescriptor column) 向一个已经存在的表添加咧
checkHBaseAvailable(HBaseConfiguration conf) 静态函数,查看HBase是否处于运行状态
createTable(HTableDescriptor desc) 创建一个表,同步操作
deleteTable(byte[] tableName) 删除一个已经存在的表
enableTable(byte[] tableName) 使表处于有效状态
disableTable(byte[] tableName) 使表处于无效状态
HTableDescriptor[] listTables() 列出所有用户控件表项
void modifyTable(byte[] tableName, HTableDescriptor htd) 修改表的模式,是异步的操作,可能需要花费一定的时间
boolean tableExists(String tableName) 检查表是否存在
用法示例:

  1. HBaseAdmin admin = new HBaseAdmin(config);
  2. admin.disableTable(“tablename”)

复制代码





三、HTableDescriptor
关系:org.apache.hadoop.hbase.HTableDescriptor
作用:包含了表的名字极其对应表的列族
返回值 函数 描述
void addFamily(HColumnDescriptor) 添加一个列族
HColumnDescriptor removeFamily(byte[] column) 移除一个列族
byte[] getName() 获取表的名字
byte[] getValue(byte[] key) 获取属性的值
void setValue(String key, String value) 设置属性的值
用法示例:

  1. HTableDescriptor htd = new HTableDescriptor(table);
  2. htd.addFamily(new HcolumnDescriptor(“family”));

复制代码





在上述例子中,通过一个HColumnDescriptor实例,为HTableDescriptor添加了一个列族:family

四、HColumnDescriptor
关系:org.apache.hadoop.hbase.HColumnDescriptor
作用:维护着关于列族的信息,例如版本号,压缩设置等。它通常在创建表或者为表添加列族的时候使用。列族被创建后不能直接修改,只能通过删除然后重新创建的方式。列族被删除的时候,列族里面的数据也会同时被删除。
返回值 函数 描述
byte[] getName() 获取列族的名字
byte[] getValue(byte[] key) 获取对应的属性的值
void setValue(String key, String value) 设置对应属性的值
用法示例:

  1. HTableDescriptor htd = new HTableDescriptor(tablename);
  2. HColumnDescriptor col = new HColumnDescriptor(“content:”);
  3. htd.addFamily(col);

复制代码







此例添加了一个content的列族

五、HTable
关系:org.apache.hadoop.hbase.client.HTable
作用:可以用来和HBase表直接通信。此方法对于更新操作来说是非线程安全的。
返回值 函数 描述
void checkAdnPut(byte[] row, byte[] family, byte[] qualifier, byte[] value, Put put 自动的检查row/family/qualifier是否与给定的值匹配
void close() 释放所有的资源或挂起内部缓冲区中的更新
Boolean exists(Get get) 检查Get实例所指定的值是否存在于HTable的列中
Result get(Get get) 获取指定行的某些单元格所对应的值
byte[][] getEndKeys() 获取当前一打开的表每个区域的结束键值
ResultScanner getScanner(byte[] family) 获取当前给定列族的scanner实例
HTableDescriptor getTableDescriptor() 获取当前表的HTableDescriptor实例
byte[] getTableName() 获取表名
static boolean isTableEnabled(HBaseConfiguration conf, String tableName) 检查表是否有效
void put(Put put) 向表中添加值
用法示例:

  1. HTable table = new HTable(conf, Bytes.toBytes(tablename));
  2. ResultScanner scanner =  table.getScanner(family);

复制代码





六、Put
关系:org.apache.hadoop.hbase.client.Put
作用:用来对单个行执行添加操作
返回值 函数 描述
Put add(byte[] family, byte[] qualifier, byte[] value) 将指定的列和对应的值添加到Put实例中
Put add(byte[] family, byte[] qualifier, long ts, byte[] value) 将指定的列和对应的值及时间戳添加到Put实例中
byte[] getRow() 获取Put实例的行
RowLock getRowLock() 获取Put实例的行锁
long getTimeStamp() 获取Put实例的时间戳
boolean isEmpty() 检查familyMap是否为空
Put setTimeStamp(long timeStamp) 设置Put实例的时间戳
用法示例:

  1. HTable table = new HTable(conf,Bytes.toBytes(tablename));
  2. Put p = new Put(brow);//为指定行创建一个Put操作
  3. p.add(family,qualifier,value);
  4. table.put(p);

复制代码





七、Get
关系:org.apache.hadoop.hbase.client.Get
作用:用来获取单个行的相关信息
返回值 函数 描述
Get addColumn(byte[] family, byte[] qualifier) 获取指定列族和列修饰符对应的列
Get addFamily(byte[] family) 通过指定的列族获取其对应列的所有列
Get setTimeRange(long minStamp,long maxStamp) 获取指定取件的列的版本号
Get setFilter(Filter filter) 当执行Get操作时设置服务器端的过滤器
用法示例:

  1. HTable table = new HTable(conf, Bytes.toBytes(tablename));
  2. Get g = new Get(Bytes.toBytes(row));

复制代码





八、Result
关系:org.apache.hadoop.hbase.client.Result
作用:存储Get或者Scan操作后获取表的单行值。使用此类提供的方法可以直接获取值或者各种Map结构(key-value对)
返回值 函数 描述
boolean containsColumn(byte[] family, byte[] qualifier) 检查指定的列是否存在
NavigableMap<byte[],byte[]> getFamilyMap(byte[] family) 获取对应列族所包含的修饰符与值的键值对
byte[] getValue(byte[] family, byte[] qualifier) 获取对应列的最新值


九、ResultScanner
关系:Interface
作用:客户端获取值的接口
返回值 函数 描述
void close() 关闭scanner并释放分配给它的资源
Result next() 获取下一行的值


HBase提供了Java Api的访问接口,掌握这个就跟Java应用使用RDBMS时需要JDBC一样重要


  1. import java.io.IOException;  
  2.   
  3. import org.apache.hadoop.conf.Configuration;  
  4. import org.apache.hadoop.hbase.HBaseConfiguration;  
  5. import org.apache.hadoop.hbase.HColumnDescriptor;  
  6. import org.apache.hadoop.hbase.HTableDescriptor;  
  7. import org.apache.hadoop.hbase.KeyValue;  
  8. import org.apache.hadoop.hbase.client.Delete;  
  9. import org.apache.hadoop.hbase.client.Get;  
  10. import org.apache.hadoop.hbase.client.HBaseAdmin;  
  11. import org.apache.hadoop.hbase.client.HTable;  
  12. import org.apache.hadoop.hbase.client.HTablePool;  
  13. import org.apache.hadoop.hbase.client.Put;  
  14. import org.apache.hadoop.hbase.client.Result;  
  15. import org.apache.hadoop.hbase.client.ResultScanner;  
  16. import org.apache.hadoop.hbase.client.Scan;  
  17. import org.apache.hadoop.hbase.util.Bytes;  
  18.   
  19. public class Hbase {  
  20.     // 声明静态配置  
  21.     static Configuration conf = null;  
  22.     static {  
  23.         conf = HBaseConfiguration.create();  
  24.         conf.set(“hbase.zookeeper.quorum”, “localhost”);  
  25.     }  
  26.   
  27.     /*  
  28.      * 创建表  
  29.      *   
  30.      * @tableName 表名  
  31.      *   
  32.      * @family 列族列表  
  33.      */  
  34.     public static void creatTable(String tableName, String[] family)  
  35.             throws Exception {  
  36.         HBaseAdmin admin = new HBaseAdmin(conf);  
  37.         HTableDescriptor desc = new HTableDescriptor(tableName);  
  38.         for (int i = 0; i < family.length; i++) {  
  39.             desc.addFamily(new HColumnDescriptor(family[i]));  
  40.         }  
  41.         if (admin.tableExists(tableName)) {  
  42.             System.out.println(“table Exists!”);  
  43.             System.exit(0);  
  44.         } else {  
  45.             admin.createTable(desc);  
  46.             System.out.println(“create table Success!”);  
  47.         }  
  48.     }  
  49.   
  50.     /*  
  51.      * 为表添加数据(适合知道有多少列族的固定表)  
  52.      *   
  53.      * @rowKey rowKey  
  54.      *   
  55.      * @tableName 表名  
  56.      *   
  57.      * @column1 第一个列族列表  
  58.      *   
  59.      * @value1 第一个列的值的列表  
  60.      *   
  61.      * @column2 第二个列族列表  
  62.      *   
  63.      * @value2 第二个列的值的列表  
  64.      */  
  65.     public static void addData(String rowKey, String tableName,  
  66.             String[] column1, String[] value1, String[] column2, String[] value2)  
  67.             throws IOException {  
  68.         Put put = new Put(Bytes.toBytes(rowKey));// 设置rowkey  
  69.         HTable table = new HTable(conf, Bytes.toBytes(tableName));// HTabel负责跟记录相关的操作如增删改查等//  
  70.                                                                     // 获取表  
  71.         HColumnDescriptor[] columnFamilies = table.getTableDescriptor() // 获取所有的列族  
  72.                 .getColumnFamilies();  
  73.   
  74.         for (int i = 0; i < columnFamilies.length; i++) {  
  75.             String familyName = columnFamilies[i].getNameAsString(); // 获取列族名  
  76.             if (familyName.equals(“article”)) { // article列族put数据  
  77.                 for (int j = 0; j < column1.length; j++) {  
  78.                     put.add(Bytes.toBytes(familyName),  
  79.                             Bytes.toBytes(column1[j]), Bytes.toBytes(value1[j]));  
  80.                 }  
  81.             }  
  82.             if (familyName.equals(“author”)) { // author列族put数据  
  83.                 for (int j = 0; j < column2.length; j++) {  
  84.                     put.add(Bytes.toBytes(familyName),  
  85.                             Bytes.toBytes(column2[j]), Bytes.toBytes(value2[j]));  
  86.                 }  
  87.             }  
  88.         }  
  89.         table.put(put);  
  90.         System.out.println(“add data Success!”);  
  91.     }  
  92.   
  93.     /*  
  94.      * 根据rwokey查询  
  95.      *   
  96.      * @rowKey rowKey  
  97.      *   
  98.      * @tableName 表名  
  99.      */  
  100.     public static Result getResult(String tableName, String rowKey)  
  101.             throws IOException {  
  102.         Get get = new Get(Bytes.toBytes(rowKey));  
  103.         HTable table = new HTable(conf, Bytes.toBytes(tableName));// 获取表  
  104.         Result result = table.get(get);  
  105.         for (KeyValue kv : result.list()) {  
  106.             System.out.println(“family:” + Bytes.toString(kv.getFamily()));  
  107.             System.out  
  108.                     .println(“qualifier:” + Bytes.toString(kv.getQualifier()));  
  109.             System.out.println(“value:” + Bytes.toString(kv.getValue()));  
  110.             System.out.println(“Timestamp:” + kv.getTimestamp());  
  111.             System.out.println(“——————————————-“);  
  112.         }  
  113.         return result;  
  114.     }  
  115.   
  116.     /*  
  117.      * 遍历查询hbase表  
  118.      *   
  119.      * @tableName 表名  
  120.      */  
  121.     public static void getResultScann(String tableName) throws IOException {  
  122.         Scan scan = new Scan();  
  123.         ResultScanner rs = null;  
  124.         HTable table = new HTable(conf, Bytes.toBytes(tableName));  
  125.         try {  
  126.             rs = table.getScanner(scan);  
  127.             for (Result r : rs) {  
  128.                 for (KeyValue kv : r.list()) {  
  129.                     System.out.println(“row:” + Bytes.toString(kv.getRow()));  
  130.                     System.out.println(“family:”  
  131.                             + Bytes.toString(kv.getFamily()));  
  132.                     System.out.println(“qualifier:”  
  133.                             + Bytes.toString(kv.getQualifier()));  
  134.                     System.out  
  135.                             .println(“value:” + Bytes.toString(kv.getValue()));  
  136.                     System.out.println(“timestamp:” + kv.getTimestamp());  
  137.                     System.out  
  138.                             .println(“——————————————-“);  
  139.                 }  
  140.             }  
  141.         } finally {  
  142.             rs.close();  
  143.         }  
  144.     }  
  145.   
  146.     /*  
  147.      * 遍历查询hbase表  
  148.      *   
  149.      * @tableName 表名  
  150.      */  
  151.     public static void getResultScann(String tableName, String start_rowkey,  
  152.             String stop_rowkey) throws IOException {  
  153.         Scan scan = new Scan();  
  154.         scan.setStartRow(Bytes.toBytes(start_rowkey));  
  155.         scan.setStopRow(Bytes.toBytes(stop_rowkey));  
  156.         ResultScanner rs = null;  
  157.         HTable table = new HTable(conf, Bytes.toBytes(tableName));  
  158.         try {  
  159.             rs = table.getScanner(scan);  
  160.             for (Result r : rs) {  
  161.                 for (KeyValue kv : r.list()) {  
  162.                     System.out.println(“row:” + Bytes.toString(kv.getRow()));  
  163.                     System.out.println(“family:”  
  164.                             + Bytes.toString(kv.getFamily()));  
  165.                     System.out.println(“qualifier:”  
  166.                             + Bytes.toString(kv.getQualifier()));  
  167.                     System.out  
  168.                             .println(“value:” + Bytes.toString(kv.getValue()));  
  169.                     System.out.println(“timestamp:” + kv.getTimestamp());  
  170.                     System.out  
  171.                             .println(“——————————————-“);  
  172.                 }  
  173.             }  
  174.         } finally {  
  175.             rs.close();  
  176.         }  
  177.     }  
  178.   
  179.     /*  
  180.      * 查询表中的某一列  
  181.      *   
  182.      * @tableName 表名  
  183.      *   
  184.      * @rowKey rowKey  
  185.      */  
  186.     public static void getResultByColumn(String tableName, String rowKey,  
  187.             String familyName, String columnName) throws IOException {  
  188.         HTable table = new HTable(conf, Bytes.toBytes(tableName));  
  189.         Get get = new Get(Bytes.toBytes(rowKey));  
  190.         get.addColumn(Bytes.toBytes(familyName), Bytes.toBytes(columnName)); // 获取指定列族和列修饰符对应的列  
  191.         Result result = table.get(get);  
  192.         for (KeyValue kv : result.list()) {  
  193.             System.out.println(“family:” + Bytes.toString(kv.getFamily()));  
  194.             System.out  
  195.                     .println(“qualifier:” + Bytes.toString(kv.getQualifier()));  
  196.             System.out.println(“value:” + Bytes.toString(kv.getValue()));  
  197.             System.out.println(“Timestamp:” + kv.getTimestamp());  
  198.             System.out.println(“——————————————-“);  
  199.         }  
  200.     }  
  201.   
  202.     /*  
  203.      * 更新表中的某一列  
  204.      *   
  205.      * @tableName 表名  
  206.      *   
  207.      * @rowKey rowKey  
  208.      *   
  209.      * @familyName 列族名  
  210.      *   
  211.      * @columnName 列名  
  212.      *   
  213.      * @value 更新后的值  
  214.      */  
  215.     public static void updateTable(String tableName, String rowKey,  
  216.             String familyName, String columnName, String value)  
  217.             throws IOException {  
  218.         HTable table = new HTable(conf, Bytes.toBytes(tableName));  
  219.         Put put = new Put(Bytes.toBytes(rowKey));  
  220.         put.add(Bytes.toBytes(familyName), Bytes.toBytes(columnName),  
  221.                 Bytes.toBytes(value));  
  222.         table.put(put);  
  223.         System.out.println(“update table Success!”);  
  224.     }  
  225.   
  226.     /*  
  227.      * 查询某列数据的多个版本  
  228.      *   
  229.      * @tableName 表名  
  230.      *   
  231.      * @rowKey rowKey  
  232.      *   
  233.      * @familyName 列族名  
  234.      *   
  235.      * @columnName 列名  
  236.      */  
  237.     public static void getResultByVersion(String tableName, String rowKey,  
  238.             String familyName, String columnName) throws IOException {  
  239.         HTable table = new HTable(conf, Bytes.toBytes(tableName));  
  240.         Get get = new Get(Bytes.toBytes(rowKey));  
  241.         get.addColumn(Bytes.toBytes(familyName), Bytes.toBytes(columnName));  
  242.         get.setMaxVersions(5);  
  243.         Result result = table.get(get);  
  244.         for (KeyValue kv : result.list()) {  
  245.             System.out.println(“family:” + Bytes.toString(kv.getFamily()));  
  246.             System.out  
  247.                     .println(“qualifier:” + Bytes.toString(kv.getQualifier()));  
  248.             System.out.println(“value:” + Bytes.toString(kv.getValue()));  
  249.             System.out.println(“Timestamp:” + kv.getTimestamp());  
  250.             System.out.println(“——————————————-“);  
  251.         }  
  252.         /*  
  253.          * List<?> results = table.get(get).list(); Iterator<?> it =  
  254.          * results.iterator(); while (it.hasNext()) {  
  255.          * System.out.println(it.next().toString()); }  
  256.          */  
  257.     }  
  258.   
  259.     /*  
  260.      * 删除指定的列  
  261.      *   
  262.      * @tableName 表名  
  263.      *   
  264.      * @rowKey rowKey  
  265.      *   
  266.      * @familyName 列族名  
  267.      *   
  268.      * @columnName 列名  
  269.      */  
  270.     public static void deleteColumn(String tableName, String rowKey,  
  271.             String falilyName, String columnName) throws IOException {  
  272.         HTable table = new HTable(conf, Bytes.toBytes(tableName));  
  273.         Delete deleteColumn = new Delete(Bytes.toBytes(rowKey));  
  274.         deleteColumn.deleteColumns(Bytes.toBytes(falilyName),  
  275.                 Bytes.toBytes(columnName));  
  276.         table.delete(deleteColumn);  
  277.         System.out.println(falilyName + ”:” + columnName + “is deleted!”);  
  278.     }  
  279.   
  280.     /*  
  281.      * 删除指定的列  
  282.      *   
  283.      * @tableName 表名  
  284.      *   
  285.      * @rowKey rowKey  
  286.      */  
  287.     public static void deleteAllColumn(String tableName, String rowKey)  
  288.             throws IOException {  
  289.         HTable table = new HTable(conf, Bytes.toBytes(tableName));  
  290.         Delete deleteAll = new Delete(Bytes.toBytes(rowKey));  
  291.         table.delete(deleteAll);  
  292.         System.out.println(“all columns are deleted!”);  
  293.     }  
  294.   
  295.     /*  
  296.      * 删除表  
  297.      *   
  298.      * @tableName 表名  
  299.      */  
  300.     public static void deleteTable(String tableName) throws IOException {  
  301.         HBaseAdmin admin = new HBaseAdmin(conf);  
  302.         admin.disableTable(tableName);  
  303.         admin.deleteTable(tableName);  
  304.         System.out.println(tableName + “is deleted!”);  
  305.     }  
  306.   
  307.     public static void main(String[] args) throws Exception {  
  308.   
  309.         // 创建表  
  310.         String tableName = “blog2”;  
  311.         String[] family = { “article”, “author” };  
  312.         // creatTable(tableName, family);  
  313.   
  314.         // 为表添加数据  
  315.   
  316.         String[] column1 = { “title”, “content”, “tag” };  
  317.         String[] value1 = {  
  318.                 “Head First HBase”,  
  319.                 “HBase is the Hadoop database. Use it when you need random, realtime read/write access to your Big Data.”,  
  320.                 “Hadoop,HBase,NoSQL” };  
  321.         String[] column2 = { “name”, “nickname” };  
  322.         String[] value2 = { “nicholas”, “lee” };  
  323.         addData(“rowkey1”, “blog2”, column1, value1, column2, value2);  
  324.         addData(“rowkey2”, “blog2”, column1, value1, column2, value2);  
  325.         addData(“rowkey3”, “blog2”, column1, value1, column2, value2);  
  326.   
  327.         // 遍历查询  
  328.         getResultScann(“blog2”, “rowkey4”, “rowkey5”);  
  329.         // 根据row key范围遍历查询  
  330.         getResultScann(“blog2”, “rowkey4”, “rowkey5”);  
  331.   
  332.         // 查询  
  333.         getResult(“blog2”, “rowkey1”);  
  334.   
  335.         // 查询某一列的值  
  336.         getResultByColumn(“blog2”, “rowkey1”, “author”, “name”);  
  337.   
  338.         // 更新列  
  339.         updateTable(“blog2”, “rowkey1”, “author”, “name”, “bin”);  
  340.   
  341.         // 查询某一列的值  
  342.         getResultByColumn(“blog2”, “rowkey1”, “author”, “name”);  
  343.   
  344.         // 查询某列的多版本  
  345.         getResultByVersion(“blog2”, “rowkey1”, “author”, “name”);  
  346.   
  347.         // 删除一列  
  348.         deleteColumn(“blog2”, “rowkey1”, “author”, “nickname”);  
  349.   
  350.         // 删除所有列  
  351.         deleteAllColumn(“blog2”, “rowkey1”);  
  352.   
  353.         // 删除表  
  354.         deleteTable(“blog2”);  
  355.   
  356.     }  
  357. }  
import java.io.IOException;

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.HBaseConfiguration;
import org.apache.hadoop.hbase.HColumnDescriptor;
import org.apache.hadoop.hbase.HTableDescriptor;
import org.apache.hadoop.hbase.KeyValue;
import org.apache.hadoop.hbase.client.Delete;
import org.apache.hadoop.hbase.client.Get;
import org.apache.hadoop.hbase.client.HBaseAdmin;
import org.apache.hadoop.hbase.client.HTable;
import org.apache.hadoop.hbase.client.HTablePool;
import org.apache.hadoop.hbase.client.Put;
import org.apache.hadoop.hbase.client.Result;
import org.apache.hadoop.hbase.client.ResultScanner;
import org.apache.hadoop.hbase.client.Scan;
import org.apache.hadoop.hbase.util.Bytes;

public class Hbase {
    // 声明静态配置
    static Configuration conf = null;
    static {
        conf = HBaseConfiguration.create();
        conf.set("hbase.zookeeper.quorum", "localhost");
    }

    /*
     * 创建表
     * 
     * @tableName 表名
     * 
     * @family 列族列表
     */
    public static void creatTable(String tableName, String[] family)
            throws Exception {
        HBaseAdmin admin = new HBaseAdmin(conf);
        HTableDescriptor desc = new HTableDescriptor(tableName);
        for (int i = 0; i < family.length; i++) {
            desc.addFamily(new HColumnDescriptor(family[i]));
        }
        if (admin.tableExists(tableName)) {
            System.out.println("table Exists!");
            System.exit(0);
        } else {
            admin.createTable(desc);
            System.out.println("create table Success!");
        }
    }

    /*
     * 为表添加数据(适合知道有多少列族的固定表)
     * 
     * @rowKey rowKey
     * 
     * @tableName 表名
     * 
     * @column1 第一个列族列表
     * 
     * @value1 第一个列的值的列表
     * 
     * @column2 第二个列族列表
     * 
     * @value2 第二个列的值的列表
     */
    public static void addData(String rowKey, String tableName,
            String[] column1, String[] value1, String[] column2, String[] value2)
            throws IOException {
        Put put = new Put(Bytes.toBytes(rowKey));// 设置rowkey
        HTable table = new HTable(conf, Bytes.toBytes(tableName));// HTabel负责跟记录相关的操作如增删改查等//
                                                                    // 获取表
        HColumnDescriptor[] columnFamilies = table.getTableDescriptor() // 获取所有的列族
                .getColumnFamilies();

        for (int i = 0; i < columnFamilies.length; i++) {
            String familyName = columnFamilies[i].getNameAsString(); // 获取列族名
            if (familyName.equals("article")) { // article列族put数据
                for (int j = 0; j < column1.length; j++) {
                    put.add(Bytes.toBytes(familyName),
                            Bytes.toBytes(column1[j]), Bytes.toBytes(value1[j]));
                }
            }
            if (familyName.equals("author")) { // author列族put数据
                for (int j = 0; j < column2.length; j++) {
                    put.add(Bytes.toBytes(familyName),
                            Bytes.toBytes(column2[j]), Bytes.toBytes(value2[j]));
                }
            }
        }
        table.put(put);
        System.out.println("add data Success!");
    }

    /*
     * 根据rwokey查询
     * 
     * @rowKey rowKey
     * 
     * @tableName 表名
     */
    public static Result getResult(String tableName, String rowKey)
            throws IOException {
        Get get = new Get(Bytes.toBytes(rowKey));
        HTable table = new HTable(conf, Bytes.toBytes(tableName));// 获取表
        Result result = table.get(get);
        for (KeyValue kv : result.list()) {
            System.out.println("family:" + Bytes.toString(kv.getFamily()));
            System.out
                    .println("qualifier:" + Bytes.toString(kv.getQualifier()));
            System.out.println("value:" + Bytes.toString(kv.getValue()));
            System.out.println("Timestamp:" + kv.getTimestamp());
            System.out.println("-------------------------------------------");
        }
        return result;
    }

    /*
     * 遍历查询hbase表
     * 
     * @tableName 表名
     */
    public static void getResultScann(String tableName) throws IOException {
        Scan scan = new Scan();
        ResultScanner rs = null;
        HTable table = new HTable(conf, Bytes.toBytes(tableName));
        try {
            rs = table.getScanner(scan);
            for (Result r : rs) {
                for (KeyValue kv : r.list()) {
                    System.out.println("row:" + Bytes.toString(kv.getRow()));
                    System.out.println("family:"
                            + Bytes.toString(kv.getFamily()));
                    System.out.println("qualifier:"
                            + Bytes.toString(kv.getQualifier()));
                    System.out
                            .println("value:" + Bytes.toString(kv.getValue()));
                    System.out.println("timestamp:" + kv.getTimestamp());
                    System.out
                            .println("-------------------------------------------");
                }
            }
        } finally {
            rs.close();
        }
    }

    /*
     * 遍历查询hbase表
     * 
     * @tableName 表名
     */
    public static void getResultScann(String tableName, String start_rowkey,
            String stop_rowkey) throws IOException {
        Scan scan = new Scan();
        scan.setStartRow(Bytes.toBytes(start_rowkey));
        scan.setStopRow(Bytes.toBytes(stop_rowkey));
        ResultScanner rs = null;
        HTable table = new HTable(conf, Bytes.toBytes(tableName));
        try {
            rs = table.getScanner(scan);
            for (Result r : rs) {
                for (KeyValue kv : r.list()) {
                    System.out.println("row:" + Bytes.toString(kv.getRow()));
                    System.out.println("family:"
                            + Bytes.toString(kv.getFamily()));
                    System.out.println("qualifier:"
                            + Bytes.toString(kv.getQualifier()));
                    System.out
                            .println("value:" + Bytes.toString(kv.getValue()));
                    System.out.println("timestamp:" + kv.getTimestamp());
                    System.out
                            .println("-------------------------------------------");
                }
            }
        } finally {
            rs.close();
        }
    }

    /*
     * 查询表中的某一列
     * 
     * @tableName 表名
     * 
     * @rowKey rowKey
     */
    public static void getResultByColumn(String tableName, String rowKey,
            String familyName, String columnName) throws IOException {
        HTable table = new HTable(conf, Bytes.toBytes(tableName));
        Get get = new Get(Bytes.toBytes(rowKey));
        get.addColumn(Bytes.toBytes(familyName), Bytes.toBytes(columnName)); // 获取指定列族和列修饰符对应的列
        Result result = table.get(get);
        for (KeyValue kv : result.list()) {
            System.out.println("family:" + Bytes.toString(kv.getFamily()));
            System.out
                    .println("qualifier:" + Bytes.toString(kv.getQualifier()));
            System.out.println("value:" + Bytes.toString(kv.getValue()));
            System.out.println("Timestamp:" + kv.getTimestamp());
            System.out.println("-------------------------------------------");
        }
    }

    /*
     * 更新表中的某一列
     * 
     * @tableName 表名
     * 
     * @rowKey rowKey
     * 
     * @familyName 列族名
     * 
     * @columnName 列名
     * 
     * @value 更新后的值
     */
    public static void updateTable(String tableName, String rowKey,
            String familyName, String columnName, String value)
            throws IOException {
        HTable table = new HTable(conf, Bytes.toBytes(tableName));
        Put put = new Put(Bytes.toBytes(rowKey));
        put.add(Bytes.toBytes(familyName), Bytes.toBytes(columnName),
                Bytes.toBytes(value));
        table.put(put);
        System.out.println("update table Success!");
    }

    /*
     * 查询某列数据的多个版本
     * 
     * @tableName 表名
     * 
     * @rowKey rowKey
     * 
     * @familyName 列族名
     * 
     * @columnName 列名
     */
    public static void getResultByVersion(String tableName, String rowKey,
            String familyName, String columnName) throws IOException {
        HTable table = new HTable(conf, Bytes.toBytes(tableName));
        Get get = new Get(Bytes.toBytes(rowKey));
        get.addColumn(Bytes.toBytes(familyName), Bytes.toBytes(columnName));
        get.setMaxVersions(5);
        Result result = table.get(get);
        for (KeyValue kv : result.list()) {
            System.out.println("family:" + Bytes.toString(kv.getFamily()));
            System.out
                    .println("qualifier:" + Bytes.toString(kv.getQualifier()));
            System.out.println("value:" + Bytes.toString(kv.getValue()));
            System.out.println("Timestamp:" + kv.getTimestamp());
            System.out.println("-------------------------------------------");
        }
        /*
         * List<?> results = table.get(get).list(); Iterator<?> it =
         * results.iterator(); while (it.hasNext()) {
         * System.out.println(it.next().toString()); }
         */
    }

    /*
     * 删除指定的列
     * 
     * @tableName 表名
     * 
     * @rowKey rowKey
     * 
     * @familyName 列族名
     * 
     * @columnName 列名
     */
    public static void deleteColumn(String tableName, String rowKey,
            String falilyName, String columnName) throws IOException {
        HTable table = new HTable(conf, Bytes.toBytes(tableName));
        Delete deleteColumn = new Delete(Bytes.toBytes(rowKey));
        deleteColumn.deleteColumns(Bytes.toBytes(falilyName),
                Bytes.toBytes(columnName));
        table.delete(deleteColumn);
        System.out.println(falilyName + ":" + columnName + "is deleted!");
    }

    /*
     * 删除指定的列
     * 
     * @tableName 表名
     * 
     * @rowKey rowKey
     */
    public static void deleteAllColumn(String tableName, String rowKey)
            throws IOException {
        HTable table = new HTable(conf, Bytes.toBytes(tableName));
        Delete deleteAll = new Delete(Bytes.toBytes(rowKey));
        table.delete(deleteAll);
        System.out.println("all columns are deleted!");
    }

    /*
     * 删除表
     * 
     * @tableName 表名
     */
    public static void deleteTable(String tableName) throws IOException {
        HBaseAdmin admin = new HBaseAdmin(conf);
        admin.disableTable(tableName);
        admin.deleteTable(tableName);
        System.out.println(tableName + "is deleted!");
    }

    public static void main(String[] args) throws Exception {

        // 创建表
        String tableName = "blog2";
        String[] family = { "article", "author" };
        // creatTable(tableName, family);

        // 为表添加数据

        String[] column1 = { "title", "content", "tag" };
        String[] value1 = {
                "Head First HBase",
                "HBase is the Hadoop database. Use it when you need random, realtime read/write access to your Big Data.",
                "Hadoop,HBase,NoSQL" };
        String[] column2 = { "name", "nickname" };
        String[] value2 = { "nicholas", "lee" };
        addData("rowkey1", "blog2", column1, value1, column2, value2);
        addData("rowkey2", "blog2", column1, value1, column2, value2);
        addData("rowkey3", "blog2", column1, value1, column2, value2);

        // 遍历查询
        getResultScann("blog2", "rowkey4", "rowkey5");
        // 根据row key范围遍历查询
        getResultScann("blog2", "rowkey4", "rowkey5");

        // 查询
        getResult("blog2", "rowkey1");

        // 查询某一列的值
        getResultByColumn("blog2", "rowkey1", "author", "name");

        // 更新列
        updateTable("blog2", "rowkey1", "author", "name", "bin");

        // 查询某一列的值
        getResultByColumn("blog2", "rowkey1", "author", "name");

        // 查询某列的多版本
        getResultByVersion("blog2", "rowkey1", "author", "name");

        // 删除一列
        deleteColumn("blog2", "rowkey1", "author", "nickname");

        // 删除所有列
        deleteAllColumn("blog2", "rowkey1");

        // 删除表
        deleteTable("blog2");

    }
}


几个相关类与HBase数据模型之间的对应关系
java类 HBase数据模型
HBaseAdmin 数据库(DataBase)
HBaseConfiguration
HTable 表(Table)
HTableDescriptor 列族(Column Family)
Put 列修饰符(Column Qualifier)
Get
Scanner

一、HBaseConfiguration
关系:org.apache.hadoop.hbase.HBaseConfiguration
作用:对HBase进行配置
返回值 函数 描述
void addResource(Path file) 通过给定的路径所指的文件来添加资源
void clear() 清空所有已设置的属性
string get(String name) 获取属性名对应的值
String getBoolean(String name, boolean defaultValue) 获取为boolean类型的属性值,如果其属性值类型部位boolean,则返回默认属性值
void set(String name, String value) 通过属性名来设置值
void setBoolean(String name, boolean value) 设置boolean类型的属性值
用法示例:

  1. HBaseConfiguration hconfig = new HBaseConfiguration();
  2. hconfig.set(“hbase.zookeeper.property.clientPort”,”2181”);

复制代码





  该方法设置了”hbase.zookeeper.property.clientPort”的端口号为2181。一般情况下,HBaseConfiguration会使用构造函数进行初始化,然后在使用其他方法。

二、HBaseAdmin
关系:org.apache.hadoop.hbase.client.HBaseAdmin
作用:提供了一个接口来管理HBase数据库的表信息。它提供的方法包括:创建表,删除表,列出表项,使表有效或无效,以及添加或删除表列族成员等。
返回值 函数 描述
      void addColumn(String tableName, HColumnDescriptor column) 向一个已经存在的表添加咧
checkHBaseAvailable(HBaseConfiguration conf) 静态函数,查看HBase是否处于运行状态
createTable(HTableDescriptor desc) 创建一个表,同步操作
deleteTable(byte[] tableName) 删除一个已经存在的表
enableTable(byte[] tableName) 使表处于有效状态
disableTable(byte[] tableName) 使表处于无效状态
HTableDescriptor[] listTables() 列出所有用户控件表项
void modifyTable(byte[] tableName, HTableDescriptor htd) 修改表的模式,是异步的操作,可能需要花费一定的时间
boolean tableExists(String tableName) 检查表是否存在
用法示例:

  1. HBaseAdmin admin = new HBaseAdmin(config);
  2. admin.disableTable(“tablename”)

复制代码





三、HTableDescriptor
关系:org.apache.hadoop.hbase.HTableDescriptor
作用:包含了表的名字极其对应表的列族
返回值 函数 描述
void addFamily(HColumnDescriptor) 添加一个列族
HColumnDescriptor removeFamily(byte[] column) 移除一个列族
byte[] getName() 获取表的名字
byte[] getValue(byte[] key) 获取属性的值
void setValue(String key, String value) 设置属性的值
用法示例:

  1. HTableDescriptor htd = new HTableDescriptor(table);
  2. htd.addFamily(new HcolumnDescriptor(“family”));

复制代码





在上述例子中,通过一个HColumnDescriptor实例,为HTableDescriptor添加了一个列族:family

四、HColumnDescriptor
关系:org.apache.hadoop.hbase.HColumnDescriptor
作用:维护着关于列族的信息,例如版本号,压缩设置等。它通常在创建表或者为表添加列族的时候使用。列族被创建后不能直接修改,只能通过删除然后重新创建的方式。列族被删除的时候,列族里面的数据也会同时被删除。
返回值 函数 描述
byte[] getName() 获取列族的名字
byte[] getValue(byte[] key) 获取对应的属性的值
void setValue(String key, String value) 设置对应属性的值
用法示例:

  1. HTableDescriptor htd = new HTableDescriptor(tablename);
  2. HColumnDescriptor col = new HColumnDescriptor(“content:”);
  3. htd.addFamily(col);

复制代码







此例添加了一个content的列族

五、HTable
关系:org.apache.hadoop.hbase.client.HTable
作用:可以用来和HBase表直接通信。此方法对于更新操作来说是非线程安全的。
返回值 函数 描述
void checkAdnPut(byte[] row, byte[] family, byte[] qualifier, byte[] value, Put put 自动的检查row/family/qualifier是否与给定的值匹配
void close() 释放所有的资源或挂起内部缓冲区中的更新
Boolean exists(Get get) 检查Get实例所指定的值是否存在于HTable的列中
Result get(Get get) 获取指定行的某些单元格所对应的值
byte[][] getEndKeys() 获取当前一打开的表每个区域的结束键值
ResultScanner getScanner(byte[] family) 获取当前给定列族的scanner实例
HTableDescriptor getTableDescriptor() 获取当前表的HTableDescriptor实例
byte[] getTableName() 获取表名
static boolean isTableEnabled(HBaseConfiguration conf, String tableName) 检查表是否有效
void put(Put put) 向表中添加值
用法示例:

  1. HTable table = new HTable(conf, Bytes.toBytes(tablename));
  2. ResultScanner scanner =  table.getScanner(family);

复制代码





六、Put
关系:org.apache.hadoop.hbase.client.Put
作用:用来对单个行执行添加操作
返回值 函数 描述
Put add(byte[] family, byte[] qualifier, byte[] value) 将指定的列和对应的值添加到Put实例中
Put add(byte[] family, byte[] qualifier, long ts, byte[] value) 将指定的列和对应的值及时间戳添加到Put实例中
byte[] getRow() 获取Put实例的行
RowLock getRowLock() 获取Put实例的行锁
long getTimeStamp() 获取Put实例的时间戳
boolean isEmpty() 检查familyMap是否为空
Put setTimeStamp(long timeStamp) 设置Put实例的时间戳
用法示例:

  1. HTable table = new HTable(conf,Bytes.toBytes(tablename));
  2. Put p = new Put(brow);//为指定行创建一个Put操作
  3. p.add(family,qualifier,value);
  4. table.put(p);

复制代码





七、Get
关系:org.apache.hadoop.hbase.client.Get
作用:用来获取单个行的相关信息
返回值 函数 描述
Get addColumn(byte[] family, byte[] qualifier) 获取指定列族和列修饰符对应的列
Get addFamily(byte[] family) 通过指定的列族获取其对应列的所有列
Get setTimeRange(long minStamp,long maxStamp) 获取指定取件的列的版本号
Get setFilter(Filter filter) 当执行Get操作时设置服务器端的过滤器
用法示例:

  1. HTable table = new HTable(conf, Bytes.toBytes(tablename));
  2. Get g = new Get(Bytes.toBytes(row));

复制代码





八、Result
关系:org.apache.hadoop.hbase.client.Result
作用:存储Get或者Scan操作后获取表的单行值。使用此类提供的方法可以直接获取值或者各种Map结构(key-value对)
返回值 函数 描述
boolean containsColumn(byte[] family, byte[] qualifier) 检查指定的列是否存在
NavigableMap<byte[],byte[]> getFamilyMap(byte[] family) 获取对应列族所包含的修饰符与值的键值对
byte[] getValue(byte[] family, byte[] qualifier) 获取对应列的最新值


九、ResultScanner
关系:Interface
作用:客户端获取值的接口
返回值 函数 描述
void close() 关闭scanner并释放分配给它的资源
Result next() 获取下一行的值


HBase提供了Java Api的访问接口,掌握这个就跟Java应用使用RDBMS时需要JDBC一样重要


  1. import java.io.IOException;  
  2.   
  3. import org.apache.hadoop.conf.Configuration;  
  4. import org.apache.hadoop.hbase.HBaseConfiguration;  
  5. import org.apache.hadoop.hbase.HColumnDescriptor;  
  6. import org.apache.hadoop.hbase.HTableDescriptor;  
  7. import org.apache.hadoop.hbase.KeyValue;  
  8. import org.apache.hadoop.hbase.client.Delete;  
  9. import org.apache.hadoop.hbase.client.Get;  
  10. import org.apache.hadoop.hbase.client.HBaseAdmin;  
  11. import org.apache.hadoop.hbase.client.HTable;  
  12. import org.apache.hadoop.hbase.client.HTablePool;  
  13. import org.apache.hadoop.hbase.client.Put;  
  14. import org.apache.hadoop.hbase.client.Result;  
  15. import org.apache.hadoop.hbase.client.ResultScanner;  
  16. import org.apache.hadoop.hbase.client.Scan;  
  17. import org.apache.hadoop.hbase.util.Bytes;  
  18.   
  19. public class Hbase {  
  20.     // 声明静态配置  
  21.     static Configuration conf = null;  
  22.     static {  
  23.         conf = HBaseConfiguration.create();  
  24.         conf.set(“hbase.zookeeper.quorum”, “localhost”);  
  25.     }  
  26.   
  27.     /*  
  28.      * 创建表  
  29.      *   
  30.      * @tableName 表名  
  31.      *   
  32.      * @family 列族列表  
  33.      */  
  34.     public static void creatTable(String tableName, String[] family)  
  35.             throws Exception {  
  36.         HBaseAdmin admin = new HBaseAdmin(conf);  
  37.         HTableDescriptor desc = new HTableDescriptor(tableName);  
  38.         for (int i = 0; i < family.length; i++) {  
  39.             desc.addFamily(new HColumnDescriptor(family[i]));  
  40.         }  
  41.         if (admin.tableExists(tableName)) {  
  42.             System.out.println(“table Exists!”);  
  43.             System.exit(0);  
  44.         } else {  
  45.             admin.createTable(desc);  
  46.             System.out.println(“create table Success!”);  
  47.         }  
  48.     }  
  49.   
  50.     /*  
  51.      * 为表添加数据(适合知道有多少列族的固定表)  
  52.      *   
  53.      * @rowKey rowKey  
  54.      *   
  55.      * @tableName 表名  
  56.      *   
  57.      * @column1 第一个列族列表  
  58.      *   
  59.      * @value1 第一个列的值的列表  
  60.      *   
  61.      * @column2 第二个列族列表  
  62.      *   
  63.      * @value2 第二个列的值的列表  
  64.      */  
  65.     public static void addData(String rowKey, String tableName,  
  66.             String[] column1, String[] value1, String[] column2, String[] value2)  
  67.             throws IOException {  
  68.         Put put = new Put(Bytes.toBytes(rowKey));// 设置rowkey  
  69.         HTable table = new HTable(conf, Bytes.toBytes(tableName));// HTabel负责跟记录相关的操作如增删改查等//  
  70.                                                                     // 获取表  
  71.         HColumnDescriptor[] columnFamilies = table.getTableDescriptor() // 获取所有的列族  
  72.                 .getColumnFamilies();  
  73.   
  74.         for (int i = 0; i < columnFamilies.length; i++) {  
  75.             String familyName = columnFamilies[i].getNameAsString(); // 获取列族名  
  76.             if (familyName.equals(“article”)) { // article列族put数据  
  77.                 for (int j = 0; j < column1.length; j++) {  
  78.                     put.add(Bytes.toBytes(familyName),  
  79.                             Bytes.toBytes(column1[j]), Bytes.toBytes(value1[j]));  
  80.                 }  
  81.             }  
  82.             if (familyName.equals(“author”)) { // author列族put数据  
  83.                 for (int j = 0; j < column2.length; j++) {  
  84.                     put.add(Bytes.toBytes(familyName),  
  85.                             Bytes.toBytes(column2[j]), Bytes.toBytes(value2[j]));  
  86.                 }  
  87.             }  
  88.         }  
  89.         table.put(put);  
  90.         System.out.println(“add data Success!”);  
  91.     }  
  92.   
  93.     /*  
  94.      * 根据rwokey查询  
  95.      *   
  96.      * @rowKey rowKey  
  97.      *   
  98.      * @tableName 表名  
  99.      */  
  100.     public static Result getResult(String tableName, String rowKey)  
  101.             throws IOException {  
  102.         Get get = new Get(Bytes.toBytes(rowKey));  
  103.         HTable table = new HTable(conf, Bytes.toBytes(tableName));// 获取表  
  104.         Result result = table.get(get);  
  105.         for (KeyValue kv : result.list()) {  
  106.             System.out.println(“family:” + Bytes.toString(kv.getFamily()));  
  107.             System.out  
  108.                     .println(“qualifier:” + Bytes.toString(kv.getQualifier()));  
  109.             System.out.println(“value:” + Bytes.toString(kv.getValue()));  
  110.             System.out.println(“Timestamp:” + kv.getTimestamp());  
  111.             System.out.println(“——————————————-“);  
  112.         }  
  113.         return result;  
  114.     }  
  115.   
  116.     /*  
  117.      * 遍历查询hbase表  
  118.      *   
  119.      * @tableName 表名  
  120.      */  
  121.     public static void getResultScann(String tableName) throws IOException {  
  122.         Scan scan = new Scan();  
  123.         ResultScanner rs = null;  
  124.         HTable table = new HTable(conf, Bytes.toBytes(tableName));  
  125.         try {  
  126.             rs = table.getScanner(scan);  
  127.             for (Result r : rs) {  
  128.                 for (KeyValue kv : r.list()) {  
  129.                     System.out.println(“row:” + Bytes.toString(kv.getRow()));  
  130.                     System.out.println(“family:”  
  131.                             + Bytes.toString(kv.getFamily()));  
  132.                     System.out.println(“qualifier:”  
  133.                             + Bytes.toString(kv.getQualifier()));  
  134.                     System.out  
  135.                             .println(“value:” + Bytes.toString(kv.getValue()));  
  136.                     System.out.println(“timestamp:” + kv.getTimestamp());  
  137.                     System.out  
  138.                             .println(“——————————————-“);  
  139.                 }  
  140.             }  
  141.         } finally {  
  142.             rs.close();  
  143.         }  
  144.     }  
  145.   
  146.     /*  
  147.      * 遍历查询hbase表  
  148.      *   
  149.      * @tableName 表名  
  150.      */  
  151.     public static void getResultScann(String tableName, String start_rowkey,  
  152.             String stop_rowkey) throws IOException {  
  153.         Scan scan = new Scan();  
  154.         scan.setStartRow(Bytes.toBytes(start_rowkey));  
  155.         scan.setStopRow(Bytes.toBytes(stop_rowkey));  
  156.         ResultScanner rs = null;  
  157.         HTable table = new HTable(conf, Bytes.toBytes(tableName));  
  158.         try {  
  159.             rs = table.getScanner(scan);  
  160.             for (Result r : rs) {  
  161.                 for (KeyValue kv : r.list()) {  
  162.                     System.out.println(“row:” + Bytes.toString(kv.getRow()));  
  163.                     System.out.println(“family:”  
  164.                             + Bytes.toString(kv.getFamily()));  
  165.                     System.out.println(“qualifier:”  
  166.                             + Bytes.toString(kv.getQualifier()));  
  167.                     System.out  
  168.                             .println(“value:” + Bytes.toString(kv.getValue()));  
  169.                     System.out.println(“timestamp:” + kv.getTimestamp());  
  170.                     System.out  
  171.                             .println(“——————————————-“);  
  172.                 }  
  173.             }  
  174.         } finally {  
  175.             rs.close();  
  176.         }  
  177.     }  
  178.   
  179.     /*  
  180.      * 查询表中的某一列  
  181.      *   
  182.      * @tableName 表名  
  183.      *   
  184.      * @rowKey rowKey  
  185.      */  
  186.     public static void getResultByColumn(String tableName, String rowKey,  
  187.             String familyName, String columnName) throws IOException {  
  188.         HTable table = new HTable(conf, Bytes.toBytes(tableName));  
  189.         Get get = new Get(Bytes.toBytes(rowKey));  
  190.         get.addColumn(Bytes.toBytes(familyName), Bytes.toBytes(columnName)); // 获取指定列族和列修饰符对应的列  
  191.         Result result = table.get(get);  
  192.         for (KeyValue kv : result.list()) {  
  193.             System.out.println(“family:” + Bytes.toString(kv.getFamily()));  
  194.             System.out  
  195.                     .println(“qualifier:” + Bytes.toString(kv.getQualifier()));  
  196.             System.out.println(“value:” + Bytes.toString(kv.getValue()));  
  197.             System.out.println(“Timestamp:” + kv.getTimestamp());  
  198.             System.out.println(“——————————————-“);  
  199.         }  
  200.     }  
  201.   
  202.     /*  
  203.      * 更新表中的某一列  
  204.      *   
  205.      * @tableName 表名  
  206.      *   
  207.      * @rowKey rowKey  
  208.      *   
  209.      * @familyName 列族名  
  210.      *   
  211.      * @columnName 列名  
  212.      *   
  213.      * @value 更新后的值  
  214.      */  
  215.     public static void updateTable(String tableName, String rowKey,  
  216.             String familyName, String columnName, String value)  
  217.             throws IOException {  
  218.         HTable table = new HTable(conf, Bytes.toBytes(tableName));  
  219.         Put put = new Put(Bytes.toBytes(rowKey));  
  220.         put.add(Bytes.toBytes(familyName), Bytes.toBytes(columnName),  
  221.                 Bytes.toBytes(value));  
  222.         table.put(put);  
  223.         System.out.println(“update table Success!”);  
  224.     }  
  225.   
  226.     /*  
  227.      * 查询某列数据的多个版本  
  228.      *   
  229.      * @tableName 表名  
  230.      *   
  231.      * @rowKey rowKey  
  232.      *   
  233.      * @familyName 列族名  
  234.      *   
  235.      * @columnName 列名  
  236.      */  
  237.     public static void getResultByVersion(String tableName, String rowKey,  
  238.             String familyName, String columnName) throws IOException {  
  239.         HTable table = new HTable(conf, Bytes.toBytes(tableName));  
  240.         Get get = new Get(Bytes.toBytes(rowKey));  
  241.         get.addColumn(Bytes.toBytes(familyName), Bytes.toBytes(columnName));  
  242.         get.setMaxVersions(5);  
  243.         Result result = table.get(get);  
  244.         for (KeyValue kv : result.list()) {  
  245.             System.out.println(“family:” + Bytes.toString(kv.getFamily()));  
  246.             System.out  
  247.                     .println(“qualifier:” + Bytes.toString(kv.getQualifier()));  
  248.             System.out.println(“value:” + Bytes.toString(kv.getValue()));  
  249.             System.out.println(“Timestamp:” + kv.getTimestamp());  
  250.             System.out.println(“——————————————-“);  
  251.         }  
  252.         /*  
  253.          * List<?> results = table.get(get).list(); Iterator<?> it =  
  254.          * results.iterator(); while (it.hasNext()) {  
  255.          * System.out.println(it.next().toString()); }  
  256.          */  
  257.     }  
  258.   
  259.     /*  
  260.      * 删除指定的列  
  261.      *   
  262.      * @tableName 表名  
  263.      *   
  264.      * @rowKey rowKey  
  265.      *   
  266.      * @familyName 列族名  
  267.      *   
  268.      * @columnName 列名  
  269.      */  
  270.     public static void deleteColumn(String tableName, String rowKey,  
  271.             String falilyName, String columnName) throws IOException {  
  272.         HTable table = new HTable(conf, Bytes.toBytes(tableName));  
  273.         Delete deleteColumn = new Delete(Bytes.toBytes(rowKey));  
  274.         deleteColumn.deleteColumns(Bytes.toBytes(falilyName),  
  275.                 Bytes.toBytes(columnName));  
  276.         table.delete(deleteColumn);  
  277.         System.out.println(falilyName + ”:” + columnName + “is deleted!”);  
  278.     }  
  279.   
  280.     /*  
  281.      * 删除指定的列  
  282.      *   
  283.      * @tableName 表名  
  284.      *   
  285.      * @rowKey rowKey  
  286.      */  
  287.     public static void deleteAllColumn(String tableName, String rowKey)  
  288.             throws IOException {  
  289.         HTable table = new HTable(conf, Bytes.toBytes(tableName));  
  290.         Delete deleteAll = new Delete(Bytes.toBytes(rowKey));  
  291.         table.delete(deleteAll);  
  292.         System.out.println(“all columns are deleted!”);  
  293.     }  
  294.   
  295.     /*  
  296.      * 删除表  
  297.      *   
  298.      * @tableName 表名  
  299.      */  
  300.     public static void deleteTable(String tableName) throws IOException {  
  301.         HBaseAdmin admin = new HBaseAdmin(conf);  
  302.         admin.disableTable(tableName);  
  303.         admin.deleteTable(tableName);  
  304.         System.out.println(tableName + “is deleted!”);  
  305.     }  
  306.   
  307.     public static void main(String[] args) throws Exception {  
  308.   
  309.         // 创建表  
  310.         String tableName = “blog2”;  
  311.         String[] family = { “article”, “author” };  
  312.         // creatTable(tableName, family);  
  313.   
  314.         // 为表添加数据  
  315.   
  316.         String[] column1 = { “title”, “content”, “tag” };  
  317.         String[] value1 = {  
  318.                 “Head First HBase”,  
  319.                 “HBase is the Hadoop database. Use it when you need random, realtime read/write access to your Big Data.”,  
  320.                 “Hadoop,HBase,NoSQL” };  
  321.         String[] column2 = { “name”, “nickname” };  
  322.         String[] value2 = { “nicholas”, “lee” };  
  323.         addData(“rowkey1”, “blog2”, column1, value1, column2, value2);  
  324.         addData(“rowkey2”, “blog2”, column1, value1, column2, value2);  
  325.         addData(“rowkey3”, “blog2”, column1, value1, column2, value2);  
  326.   
  327.         // 遍历查询  
  328.         getResultScann(“blog2”, “rowkey4”, “rowkey5”);  
  329.         // 根据row key范围遍历查询  
  330.         getResultScann(“blog2”, “rowkey4”, “rowkey5”);  
  331.   
  332.         // 查询  
  333.         getResult(“blog2”, “rowkey1”);  
  334.   
  335.         // 查询某一列的值  
  336.         getResultByColumn(“blog2”, “rowkey1”, “author”, “name”);  
  337.   
  338.         // 更新列  
  339.         updateTable(“blog2”, “rowkey1”, “author”, “name”, “bin”);  
  340.   
  341.         // 查询某一列的值  
  342.         getResultByColumn(“blog2”, “rowkey1”, “author”, “name”);  
  343.   
  344.         // 查询某列的多版本  
  345.         getResultByVersion(“blog2”, “rowkey1”, “author”, “name”);  
  346.   
  347.         // 删除一列  
  348.         deleteColumn(“blog2”, “rowkey1”, “author”, “nickname”);  
  349.   
  350.         // 删除所有列  
  351.         deleteAllColumn(“blog2”, “rowkey1”);  
  352.   
  353.         // 删除表  
  354.         deleteTable(“blog2”);  
  355.   
  356.     }  
  357. }  
import java.io.IOException;

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.HBaseConfiguration;
import org.apache.hadoop.hbase.HColumnDescriptor;
import org.apache.hadoop.hbase.HTableDescriptor;
import org.apache.hadoop.hbase.KeyValue;
import org.apache.hadoop.hbase.client.Delete;
import org.apache.hadoop.hbase.client.Get;
import org.apache.hadoop.hbase.client.HBaseAdmin;
import org.apache.hadoop.hbase.client.HTable;
import org.apache.hadoop.hbase.client.HTablePool;
import org.apache.hadoop.hbase.client.Put;
import org.apache.hadoop.hbase.client.Result;
import org.apache.hadoop.hbase.client.ResultScanner;
import org.apache.hadoop.hbase.client.Scan;
import org.apache.hadoop.hbase.util.Bytes;

public class Hbase {
    // 声明静态配置
    static Configuration conf = null;
    static {
        conf = HBaseConfiguration.create();
        conf.set("hbase.zookeeper.quorum", "localhost");
    }

    /*
     * 创建表
     * 
     * @tableName 表名
     * 
     * @family 列族列表
     */
    public static void creatTable(String tableName, String[] family)
            throws Exception {
        HBaseAdmin admin = new HBaseAdmin(conf);
        HTableDescriptor desc = new HTableDescriptor(tableName);
        for (int i = 0; i < family.length; i++) {
            desc.addFamily(new HColumnDescriptor(family[i]));
        }
        if (admin.tableExists(tableName)) {
            System.out.println("table Exists!");
            System.exit(0);
        } else {
            admin.createTable(desc);
            System.out.println("create table Success!");
        }
    }

    /*
     * 为表添加数据(适合知道有多少列族的固定表)
     * 
     * @rowKey rowKey
     * 
     * @tableName 表名
     * 
     * @column1 第一个列族列表
     * 
     * @value1 第一个列的值的列表
     * 
     * @column2 第二个列族列表
     * 
     * @value2 第二个列的值的列表
     */
    public static void addData(String rowKey, String tableName,
            String[] column1, String[] value1, String[] column2, String[] value2)
            throws IOException {
        Put put = new Put(Bytes.toBytes(rowKey));// 设置rowkey
        HTable table = new HTable(conf, Bytes.toBytes(tableName));// HTabel负责跟记录相关的操作如增删改查等//
                                                                    // 获取表
        HColumnDescriptor[] columnFamilies = table.getTableDescriptor() // 获取所有的列族
                .getColumnFamilies();

        for (int i = 0; i < columnFamilies.length; i++) {
            String familyName = columnFamilies[i].getNameAsString(); // 获取列族名
            if (familyName.equals("article")) { // article列族put数据
                for (int j = 0; j < column1.length; j++) {
                    put.add(Bytes.toBytes(familyName),
                            Bytes.toBytes(column1[j]), Bytes.toBytes(value1[j]));
                }
            }
            if (familyName.equals("author")) { // author列族put数据
                for (int j = 0; j < column2.length; j++) {
                    put.add(Bytes.toBytes(familyName),
                            Bytes.toBytes(column2[j]), Bytes.toBytes(value2[j]));
                }
            }
        }
        table.put(put);
        System.out.println("add data Success!");
    }

    /*
     * 根据rwokey查询
     * 
     * @rowKey rowKey
     * 
     * @tableName 表名
     */
    public static Result getResult(String tableName, String rowKey)
            throws IOException {
        Get get = new Get(Bytes.toBytes(rowKey));
        HTable table = new HTable(conf, Bytes.toBytes(tableName));// 获取表
        Result result = table.get(get);
        for (KeyValue kv : result.list()) {
            System.out.println("family:" + Bytes.toString(kv.getFamily()));
            System.out
                    .println("qualifier:" + Bytes.toString(kv.getQualifier()));
            System.out.println("value:" + Bytes.toString(kv.getValue()));
            System.out.println("Timestamp:" + kv.getTimestamp());
            System.out.println("-------------------------------------------");
        }
        return result;
    }

    /*
     * 遍历查询hbase表
     * 
     * @tableName 表名
     */
    public static void getResultScann(String tableName) throws IOException {
        Scan scan = new Scan();
        ResultScanner rs = null;
        HTable table = new HTable(conf, Bytes.toBytes(tableName));
        try {
            rs = table.getScanner(scan);
            for (Result r : rs) {
                for (KeyValue kv : r.list()) {
                    System.out.println("row:" + Bytes.toString(kv.getRow()));
                    System.out.println("family:"
                            + Bytes.toString(kv.getFamily()));
                    System.out.println("qualifier:"
                            + Bytes.toString(kv.getQualifier()));
                    System.out
                            .println("value:" + Bytes.toString(kv.getValue()));
                    System.out.println("timestamp:" + kv.getTimestamp());
                    System.out
                            .println("-------------------------------------------");
                }
            }
        } finally {
            rs.close();
        }
    }

    /*
     * 遍历查询hbase表
     * 
     * @tableName 表名
     */
    public static void getResultScann(String tableName, String start_rowkey,
            String stop_rowkey) throws IOException {
        Scan scan = new Scan();
        scan.setStartRow(Bytes.toBytes(start_rowkey));
        scan.setStopRow(Bytes.toBytes(stop_rowkey));
        ResultScanner rs = null;
        HTable table = new HTable(conf, Bytes.toBytes(tableName));
        try {
            rs = table.getScanner(scan);
            for (Result r : rs) {
                for (KeyValue kv : r.list()) {
                    System.out.println("row:" + Bytes.toString(kv.getRow()));
                    System.out.println("family:"
                            + Bytes.toString(kv.getFamily()));
                    System.out.println("qualifier:"
                            + Bytes.toString(kv.getQualifier()));
                    System.out
                            .println("value:" + Bytes.toString(kv.getValue()));
                    System.out.println("timestamp:" + kv.getTimestamp());
                    System.out
                            .println("-------------------------------------------");
                }
            }
        } finally {
            rs.close();
        }
    }

    /*
     * 查询表中的某一列
     * 
     * @tableName 表名
     * 
     * @rowKey rowKey
     */
    public static void getResultByColumn(String tableName, String rowKey,
            String familyName, String columnName) throws IOException {
        HTable table = new HTable(conf, Bytes.toBytes(tableName));
        Get get = new Get(Bytes.toBytes(rowKey));
        get.addColumn(Bytes.toBytes(familyName), Bytes.toBytes(columnName)); // 获取指定列族和列修饰符对应的列
        Result result = table.get(get);
        for (KeyValue kv : result.list()) {
            System.out.println("family:" + Bytes.toString(kv.getFamily()));
            System.out
                    .println("qualifier:" + Bytes.toString(kv.getQualifier()));
            System.out.println("value:" + Bytes.toString(kv.getValue()));
            System.out.println("Timestamp:" + kv.getTimestamp());
            System.out.println("-------------------------------------------");
        }
    }

    /*
     * 更新表中的某一列
     * 
     * @tableName 表名
     * 
     * @rowKey rowKey
     * 
     * @familyName 列族名
     * 
     * @columnName 列名
     * 
     * @value 更新后的值
     */
    public static void updateTable(String tableName, String rowKey,
            String familyName, String columnName, String value)
            throws IOException {
        HTable table = new HTable(conf, Bytes.toBytes(tableName));
        Put put = new Put(Bytes.toBytes(rowKey));
        put.add(Bytes.toBytes(familyName), Bytes.toBytes(columnName),
                Bytes.toBytes(value));
        table.put(put);
        System.out.println("update table Success!");
    }

    /*
     * 查询某列数据的多个版本
     * 
     * @tableName 表名
     * 
     * @rowKey rowKey
     * 
     * @familyName 列族名
     * 
     * @columnName 列名
     */
    public static void getResultByVersion(String tableName, String rowKey,
            String familyName, String columnName) throws IOException {
        HTable table = new HTable(conf, Bytes.toBytes(tableName));
        Get get = new Get(Bytes.toBytes(rowKey));
        get.addColumn(Bytes.toBytes(familyName), Bytes.toBytes(columnName));
        get.setMaxVersions(5);
        Result result = table.get(get);
        for (KeyValue kv : result.list()) {
            System.out.println("family:" + Bytes.toString(kv.getFamily()));
            System.out
                    .println("qualifier:" + Bytes.toString(kv.getQualifier()));
            System.out.println("value:" + Bytes.toString(kv.getValue()));
            System.out.println("Timestamp:" + kv.getTimestamp());
            System.out.println("-------------------------------------------");
        }
        /*
         * List<?> results = table.get(get).list(); Iterator<?> it =
         * results.iterator(); while (it.hasNext()) {
         * System.out.println(it.next().toString()); }
         */
    }

    /*
     * 删除指定的列
     * 
     * @tableName 表名
     * 
     * @rowKey rowKey
     * 
     * @familyName 列族名
     * 
     * @columnName 列名
     */
    public static void deleteColumn(String tableName, String rowKey,
            String falilyName, String columnName) throws IOException {
        HTable table = new HTable(conf, Bytes.toBytes(tableName));
        Delete deleteColumn = new Delete(Bytes.toBytes(rowKey));
        deleteColumn.deleteColumns(Bytes.toBytes(falilyName),
                Bytes.toBytes(columnName));
        table.delete(deleteColumn);
        System.out.println(falilyName + ":" + columnName + "is deleted!");
    }

    /*
     * 删除指定的列
     * 
     * @tableName 表名
     * 
     * @rowKey rowKey
     */
    public static void deleteAllColumn(String tableName, String rowKey)
            throws IOException {
        HTable table = new HTable(conf, Bytes.toBytes(tableName));
        Delete deleteAll = new Delete(Bytes.toBytes(rowKey));
        table.delete(deleteAll);
        System.out.println("all columns are deleted!");
    }

    /*
     * 删除表
     * 
     * @tableName 表名
     */
    public static void deleteTable(String tableName) throws IOException {
        HBaseAdmin admin = new HBaseAdmin(conf);
        admin.disableTable(tableName);
        admin.deleteTable(tableName);
        System.out.println(tableName + "is deleted!");
    }

    public static void main(String[] args) throws Exception {

        // 创建表
        String tableName = "blog2";
        String[] family = { "article", "author" };
        // creatTable(tableName, family);

        // 为表添加数据

        String[] column1 = { "title", "content", "tag" };
        String[] value1 = {
                "Head First HBase",
                "HBase is the Hadoop database. Use it when you need random, realtime read/write access to your Big Data.",
                "Hadoop,HBase,NoSQL" };
        String[] column2 = { "name", "nickname" };
        String[] value2 = { "nicholas", "lee" };
        addData("rowkey1", "blog2", column1, value1, column2, value2);
        addData("rowkey2", "blog2", column1, value1, column2, value2);
        addData("rowkey3", "blog2", column1, value1, column2, value2);

        // 遍历查询
        getResultScann("blog2", "rowkey4", "rowkey5");
        // 根据row key范围遍历查询
        getResultScann("blog2", "rowkey4", "rowkey5");

        // 查询
        getResult("blog2", "rowkey1");

        // 查询某一列的值
        getResultByColumn("blog2", "rowkey1", "author", "name");

        // 更新列
        updateTable("blog2", "rowkey1", "author", "name", "bin");

        // 查询某一列的值
        getResultByColumn("blog2", "rowkey1", "author", "name");

        // 查询某列的多版本
        getResultByVersion("blog2", "rowkey1", "author", "name");

        // 删除一列
        deleteColumn("blog2", "rowkey1", "author", "nickname");

        // 删除所有列
        deleteAllColumn("blog2", "rowkey1");

        // 删除表
        deleteTable("blog2");

    }
}