12 2021 档案

摘要:Calendar calendar = Calendar.getInstance(); calendar.set(2019, Calendar.DECEMBER, 31); Date strDate = calendar.getTime(); //注意yyyy-MM-dd和YYYY-MM-dd Da 阅读全文
posted @ 2021-12-31 16:28 折咻 阅读(246) 评论(0) 推荐(0)
摘要:Mysql: 优点:提高查询效率 缺点:降低跟新效率 索引类型:Fulltext 、Hash、Btree、Rtree 查询表索引: show index from 表 创建索引: CREATE INDEX indexName ON table_name (column_name) 修改表结构(添加索 阅读全文
posted @ 2021-12-31 10:21 折咻 阅读(46) 评论(0) 推荐(0)
摘要:package com.example.demo; import org.apache.cxf.endpoint.Client; import org.apache.cxf.jaxws.endpoint.dynamic.JaxWsDynamicClientFactory; import javax. 阅读全文
posted @ 2021-12-22 10:39 折咻 阅读(112) 评论(0) 推荐(0)
摘要:关闭谷歌游览器: Runtime.getRuntime().exec("taskkill /F /IM chrome.exe"); Runtime.getRuntime().exec 说明:用于调用外部可执行程序或系统命令 阅读全文
posted @ 2021-12-20 11:28 折咻 阅读(256) 评论(0) 推荐(0)