摘要: 1、打开cmd输入java或javac检查java环境是否配好 2、下载解压tomacat如下图,下载去官网http://tomcat.apache.org/ 3、然后我们点击bin目录下的setclasspath.bat文件,在开头设置jdk和jre路径 4、置系统环境变量,新建变量如下: CAT 阅读全文
posted @ 2021-05-17 19:32 凌波漫步~ 阅读(68) 评论(0) 推荐(0) 编辑
摘要: SELECT a.address,a.cont AS countAddress,b.sum AS sumAddress,CONCAT( ROUND( a.cont / b.sum * 100, 2 ), '', '%' ) AS percent FROM( SELECT address, COUNT 阅读全文
posted @ 2021-05-15 08:57 凌波漫步~ 阅读(938) 评论(0) 推荐(0) 编辑
摘要: List list = Arrays.asList("aa,xx,ss,xx,ss,e,w,a,aa".split(","));Map map = new HashMap();for (String s : list) {Integer i = map.get(s);if(i == null)map 阅读全文
posted @ 2021-05-14 18:07 凌波漫步~ 阅读(105) 评论(0) 推荐(0) 编辑
摘要: List<Map<String,Object>> IcuMap = apiMapper.selectIcuList(id); jsonObject.put("icuinfo",IcuMap); JSONArray icuinfo = jsonObject.getJSONArray("icuinfo" 阅读全文
posted @ 2021-05-12 18:25 凌波漫步~ 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 下面就是一个json对象:JSONObjectJSONObject param = { "service_code": "test", "service": [ { "info": { "dept_code": "", "dept_name": "" } } ] } JSONObject里的serv 阅读全文
posted @ 2021-05-12 18:21 凌波漫步~ 阅读(58) 评论(0) 推荐(0) 编辑
摘要: String.valueOf((Object)info.get("peri_days")) 阅读全文
posted @ 2021-05-10 18:17 凌波漫步~ 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 直接 Date d = (Date)时间戳 就可以了 阅读全文
posted @ 2021-05-10 18:14 凌波漫步~ 阅读(892) 评论(0) 推荐(0) 编辑
摘要: private JSONObject toJsonObj(Map<String, Object> map, JSONObject resultJson) { Iterator it = map.keySet().iterator(); while (it.hasNext()) { String ke 阅读全文
posted @ 2021-05-10 18:13 凌波漫步~ 阅读(7168) 评论(0) 推荐(0) 编辑
摘要: 微信开发者工具中点击上传右侧的箭头,打开详情页面,如下: 在手机端进入体验版,点击手机右上角的三点,看见如下“开发调试”,打开调试 阅读全文
posted @ 2020-06-01 18:02 凌波漫步~ 阅读(1123) 评论(1) 推荐(1) 编辑