我正在使用 HBase stargate REST API 从 Hbase 获取数据。我有表 'state' 和行键 '1' 。当我在浏览器中粘贴以下行时,我得到了 xml 格式的输出。
http://localhost:8000/state/1
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><CellSet><Row key="MQ=="><Cell column="aW5mbzpjb2xvcg==" timestamp="1459193020823">cmVk</Cell><Cell column="aW5mbzpuYW1l" timestamp="1459192932985">TUg=</Cell></Row></CellSet>
如何获得 json 格式的输出?
提前致谢。