码迷,mamicode.com
首页 > Web开发 > 详细

HBase 转 json

时间:2014-11-15 06:42:14      阅读:274      评论:0      收藏:0      [点我收藏+]

标签: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<byte[], NavigableMap<byte[], NavigableMap<Long, byte[]>>> map = r.getMap();
  
  String text = JSON.toJSONString(map);
  System.out.println(text);


本文出自 “书生” 博客,请务必保留此出处http://yjplxq.blog.51cto.com/4081353/1576652

HBase 转 json

标签:hbase json

原文地址:http://yjplxq.blog.51cto.com/4081353/1576652

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!