Changes between Version 8 and Version 9 of waue/2009/0626
- Timestamp:
- Jul 24, 2009, 11:31:04 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified waue/2009/0626
v8 v9 116 116 * Scanner連接到HBase後,怎麼把內容萃取出來呢? 用到 RowResult承接 Scanner.next()方法,然而一個row裡面,會有 117 117 許多colomn_family,每個colomn_family又會有自己的column_quolify,形成colomn_family:column_quolify的二維結構。 118 * 提供兩個方法 [法一] [法二],方法都一樣,只是步驟有點不同 118 119 * getRow() : 把row的名稱秀出來 119 120 * get(colomn_family:column_quolify) : 把該cell的值秀出來 120 121 * for (!RowResult result : scanner) 可以看成是 121 122 for (int i=0; i< scanner.length; i++){ !RowResult result[i] = scanner[i]; 123 * 但是 scanner沒有 hasnext 或 length的方法,因此用for還滿簡潔的 122 124 123 125 … … 128 130 RowResult rowResult = scanner.next(); 129 131 132 // 法一 130 133 while (rowResult != null) { 131 134 … … 138 141 } 139 142 143 //法二 140 144 for (RowResult result : scanner) { 141 145 System.out.println("Found row: " 142 + Bytes.toString(r owResult.getRow())146 + Bytes.toString(result.getRow()) 143 147 + " with value: " 144 + r owResult.get(Bytes148 + result.get(Bytes 145 149 .toBytes(colomn_family+column_quolify))); 146 150 } … … 227 231 for (RowResult result : scanner) { 228 232 System.out.println("Found row: " 229 + Bytes.toString(r owResult.getRow())233 + Bytes.toString(result.getRow()) 230 234 + " with value: " 231 + r owResult.get(Bytes235 + result.get(Bytes 232 236 .toBytes(colomn_family+column_quolify))); 233 237 }