Changes between Version 9 and Version 10 of waue/2009/0626
- Timestamp:
- Jul 24, 2009, 11:32:01 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified waue/2009/0626
v9 v10 128 128 Scanner scanner = table.getScanner(new String[] { colomn_family+column_quolify }); 129 129 130 // 法一 130 131 RowResult rowResult = scanner.next(); 131 132 // 法一133 132 while (rowResult != null) { 134 133 … … 139 138 .toBytes(colomn_family+column_quolify))); 140 139 rowResult = scanner.next(); 141 } 140 }// 法一完 142 141 143 142 //法二 … … 148 147 + result.get(Bytes 149 148 .toBytes(colomn_family+column_quolify))); 150 } 149 }// 法二完 151 150 152 151 scanner.close();