01 2018 档案

摘要:将Map转换为json字符串 String json = JSONUtils.toJSONString(map); 遍历json字符串 JSONObject jsonObject = JSONObject.parseObject(json); jsonobject.get(key); 阅读全文
posted @ 2018-01-12 09:38 Azjs丶V1 阅读(1876) 评论(0) 推荐(0) 编辑
摘要:tail -f xx.log 查看日志 tail -f -n 200 xx.log 200毫秒打印一次日志 grep -v 'ERROR' demo.log #查找不含"ERROR"的行 (用于查看过滤之后的日志) 阅读全文
posted @ 2018-01-04 18:47 Azjs丶V1 阅读(182) 评论(0) 推荐(0) 编辑