千家信息网

HBase 转 json

发表于:2024-12-13 作者:千家信息网编辑
千家信息网最后更新 2024年12月13日,import com.alibaba.fastjson.JSON Configuration conf = HBaseConfiguration.create(); HTableInterfa
千家信息网最后更新 2024年12月13日HBase 转 json
  import com.alibaba.fastjson.JSON    Configuration conf = HBaseConfiguration.create();  HTableInterface usersTable = new HTable(conf,table);  Get g = new Get(Bytes.toBytes("TheRealMT"));  Result r = usersTable.get(g);  Map>> map = r.getMap();    String text = JSON.toJSONString(map);  System.out.println(text);


附件:http://down.51cto.com/data/2365082
0