溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Java中怎么利用HBase實現(xiàn)客戶端編程

發(fā)布時間:2021-07-20 14:20:25 來源:億速云 閱讀:158 作者:Leah 欄目:編程語言

這篇文章將為大家詳細講解有關(guān)Java中怎么利用HBase實現(xiàn)客戶端編程,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

1. 準(zhǔn)備工作

  1. 下載后安裝jdk包(這里使用的是jdk-6u10-rc2-bin-b32-windows-i586-p-12_sep_2008);

  2. 下載eclipse,解壓到本地(這里使用的是eclipse-java-helios-SR2-win32);

  3. 下載HBase包,解壓安裝包到本地(這里使用的是hbase-0.90.2)。

2. 搭建開發(fā)環(huán)境

  1. 運行Eclipse,創(chuàng)建一個新的Java工程“HBaseClient”,右鍵項目根目錄,選擇 “Properties”->“Java Build  Path”->“Library”->“Add External  JARs”,將HBase解壓后根目錄下的hbase-0.90.2.jar、hbase-0.90.2-tests.jar和lib子目錄下所有jar  包添加到本工程的Classpath下。

  2. 按照步驟1中的操作,將自己所連接的HBase的配置文件hbase-site.xml添加到本工程的Classpath中,如下所示為配置文件的一個示例:

  3. <configuration> <property> <name>hbase.rootdir</name> <value>hdfs://hostname:9000/hbase</value> </property> <property> <name>hbase.cluster.distributed</name> <value>true</value> </property> <property> <name>hbase.zookeeper.quorum</name> <value>*.*.*.*, *.*.*.*, *.*.*.*</value> </property> <property skipInDoc="true"> <name>hbase.defaults.for.version</name> <value>0.90.2</value> </property> </configuration>
  4. 下面可以在Eclipse環(huán)境下進行HBase編程了。

3. HBase基本操作代碼示例

3.1 初始化配置
private static Configuration conf = null; /**  * 初始化配置  */ static {     conf = HBaseConfiguration.create(); }
3.2 創(chuàng)建表
/**  * 創(chuàng)建表操作  * @throws IOException  */ public void createTable(String tablename, String[] cfs) throws IOException {     HBaseAdmin admin = new HBaseAdmin(conf);     if (admin.tableExists(tablename)) {         System.out.println("表已經(jīng)存在!");     }     else {         HTableDescriptor tableDesc = new HTableDescriptor(tablename);         for (int i = 0; i < cfs.length; i++) {             tableDesc.addFamily(new HColumnDescriptor(cfs[i]));         }         admin.createTable(tableDesc);         System.out.println("表創(chuàng)建成功!");     } }
3.3 刪除表
/**  * 刪除表操作  * @param tablename  * @throws IOException  */ public void deleteTable(String tablename) throws IOException {     try {         HBaseAdmin admin = new HBaseAdmin(conf);         admin.disableTable(tablename);         admin.deleteTable(tablename);         System.out.println("表刪除成功!");     } catch (MasterNotRunningException e) {         e.printStackTrace();     } catch (ZooKeeperConnectionException e) {         e.printStackTrace();     } }
3.4 插入一行記錄
/**  * 插入一行記錄  * @param tablename  * @param cfs  */ public void writeRow(String tablename, String[] cfs) {     try {         HTable table = new HTable(conf, tablename);         Put put = new Put(Bytes.toBytes("rows1"));         for (int j = 0; j < cfs.length; j++) {             put.add(Bytes.toBytes(cfs[j]),                     Bytes.toBytes(String.valueOf(1)),                     Bytes.toBytes("value_1"));             table.put(put);         }     } catch (IOException e) {         e.printStackTrace();     } }
3.5 刪除一行記錄
/**  * 刪除一行記錄  * @param tablename  * @param rowkey  * @throws IOException  */ public void deleteRow(String tablename, String rowkey) throws IOException {     HTable table = new HTable(conf, tablename);     List list = new ArrayList();     Delete d1 = new Delete(rowkey.getBytes());     list.add(d1);     table.delete(list);     System.out.println("刪除行成功!"); }
3.6 查找一行記錄
/**  * 查找一行記錄  * @param tablename  * @param rowkey  */ public static void selectRow(String tablename, String rowKey)         throws IOException {     HTable table = new HTable(conf, tablename);     Get g = new Get(rowKey.getBytes());     Result rs = table.get(g);     for (KeyValue kv : rs.raw()) {         System.out.print(new String(kv.getRow()) + "  ");         System.out.print(new String(kv.getFamily()) + ":");         System.out.print(new String(kv.getQualifier()) + "  ");         System.out.print(kv.getTimestamp() + "  ");         System.out.println(new String(kv.getValue()));     } }
3.7 查詢表中所有行
/**  * 查詢表中所有行  * @param tablename  */ public void scaner(String tablename) {     try {         HTable table = new HTable(conf, tablename);         Scan s = new Scan();         ResultScanner rs = table.getScanner(s);         for (Result r : rs) {             KeyValue[] kv = r.raw();             for (int i = 0; i < kv.length; i++) {                 System.out.print(new String(kv[i].getRow()) + "  ");                 System.out.print(new String(kv[i].getFamily()) + ":");                 System.out.print(new String(kv[i].getQualifier()) + "  ");                 System.out.print(kv[i].getTimestamp() + "  ");                 System.out.println(new String(kv[i].getValue()));             }         }     } catch (IOException e) {         e.printStackTrace();     } }

關(guān)于Java中怎么利用HBase實現(xiàn)客戶端編程就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI