03 2020 档案

摘要:/** * 读取 .properties 配置文件 * @param propertiesUrl 配置文件的路径 * @return 配置文件中的key-value值 */ public static Map<String, String> getProperties(String properti 阅读全文
posted @ 2020-03-19 20:44 老孙家人 阅读(1122) 评论(0) 推荐(1)
摘要:public static void getWeekMonthYear(){ Map<String, Integer> mapInt = new LinkedHashMap<String, Integer>(); Calendar calendar = Calendar.getInstance(); 阅读全文
posted @ 2020-03-19 20:38 老孙家人 阅读(7489) 评论(0) 推荐(0)
摘要:1 public static void A(String pythonPath, String pyPath){ 2 Process proc; 3 String[] arg = new String[] { "python3", "后缀为.py的文件", "参数1", "参数2", "参数3" 阅读全文
posted @ 2020-03-19 20:26 老孙家人 阅读(708) 评论(0) 推荐(0)
摘要:setSqlSelect 设置 SELECT 查询字段 where WHERE 语句,拼接 + WHERE 条件 and AND 语句,拼接 + AND 字段=值 and New AND 语句,拼接 + AND (字段=值) or OR 语句,拼接 + OR 字段=值 orNew OR 语句,拼接 阅读全文
posted @ 2020-03-17 23:04 老孙家人 阅读(5773) 评论(0) 推荐(0)