在HBase中,可以使用Put
類來(lái)向表中插入數(shù)據(jù)。Put
類的構(gòu)造函數(shù)接受一個(gè)rowkey
作為參數(shù),然后可以使用addColumn
方法向該行中添加數(shù)據(jù)。示例如下:
import org.apache.hadoop.hbase.client.Put;
import org.apache.hadoop.hbase.util.Bytes;
// 創(chuàng)建Put對(duì)象,指定rowkey
Put put = new Put(Bytes.toBytes("rowkey1"));
// 向指定行中添加數(shù)據(jù)
put.addColumn(Bytes.toBytes("cf"), Bytes.toBytes("column1"), Bytes.toBytes("value1"));
put.addColumn(Bytes.toBytes("cf"), Bytes.toBytes("column2"), Bytes.toBytes("value2"));
// 將Put對(duì)象插入到HBase表中
table.put(put);
在上面的示例中,首先創(chuàng)建一個(gè)Put
對(duì)象,并指定了rowkey
為"rowkey1",然后使用addColumn
方法向該行中的列族"cf"中的列"column1"和"column2"添加了數(shù)據(jù)"value1"和"value2"。最后,使用table.put(put)
方法將該Put
對(duì)象插入到HBase表中。