51,409
社区成员
发帖
与我相关
我的任务
分享
byte[] bytes = "20170604_11002130319010_12312126".getBytes();
List<Object> list = new ArrayList<>(2);
list.add(bytes);
// Map<String, Object> rowKeyList = new HashMap<>(2);
// rowKeyList.put("rowKeyList", "20170604_11002130319010_12312126");
Map<String, Object> data = new HashMap<>(2);
data.put("rowKeyList", list);
data.put("total", 1);
String str = JSON.toJSONString(data);
System.out.println("JSON.toJSONString(data)" + str);