Given a table and row key, you can use the get() operation to return specific versions of that row. The org.apache.hadoop.hbase.client.Get class is used to perform Get operations on a single row. Given a row with row key of row1 in a table named table1, the column value for a column with column family cf1 and column qualifier col1 is obtained as follows.
The org.apache.hadoop.hbase.TableName class represents a table name. Create a TableName instance:
TableName tableName=TableName.valueOf('table1');
The HBase configuration is represented with the org.apache.hadoop.hbase.HBaseConfiguration ...