上一页 1 2 3 4 5 6 7 8 9 ··· 20 下一页
摘要: package com.infosec.resource.service.impl; import java.util.ArrayList; import java.util.List; import com.infosec.sms.bean.PropertiesBean; public class 阅读全文
posted @ 2021-08-23 15:08 JLCUI 阅读(176) 评论(0) 推荐(0)
摘要: set集合元素唯一,无序;list集合元素可以重复,有序。 1、set转list:数据保持不变,顺序发生变化,可以使用Collections.sort进行排序(Collections.shuffle 随机排序,Collections.reverse 反转顺序)。 2、list转set:去除重复数据, 阅读全文
posted @ 2021-08-18 10:30 JLCUI 阅读(907) 评论(0) 推荐(0)
摘要: #Linux Tomcat9 catalina.out日志按日期生成 进入到文件夹下 :cd /srv/cronolog-1.6.2/cronolog-1.6.2 安装: ./configure && make && make install 查看 cronolog 安装 which cronolo 阅读全文
posted @ 2021-08-09 15:21 JLCUI 阅读(945) 评论(0) 推荐(0)
摘要: 1.创建用户CREATE USER 'netauth'@'%' IDENTIFIED BY 'Infosec@2020'; 2.用户授权所以数据库 grant all privileges on *.* to 'netauth'@'%'; 3.刷新 flush privileges; 阅读全文
posted @ 2021-08-06 17:55 JLCUI 阅读(255) 评论(0) 推荐(0)
摘要: package com.infosec.warning.scheduler; import com.infosec.warning.abs.NetAuthWarning; import com.infosec.warning.abs.NetAuthWarningNotice; import com. 阅读全文
posted @ 2021-07-22 15:03 JLCUI 阅读(28) 评论(0) 推荐(0)
摘要: /** * * 全角转半角 * @param input * @return * @return String * @author jlcui * @date 2021年7月16日下午1:01:24 */ private String ToDBC(String input) { char c[] = 阅读全文
posted @ 2021-07-16 13:06 JLCUI 阅读(45) 评论(0) 推荐(0)
摘要: package com.netauth.utils.common; /** * * * <p> * 特殊字符常量 * </p> * * <p> * 版权所有:神州融信信息技术有限公司(c) 2019 * </p> * @date 2021年3月3日 * @author wyh * */ public 阅读全文
posted @ 2021-07-16 11:23 JLCUI 阅读(81) 评论(0) 推荐(0)
摘要: /* * Copyright 2019-2020 Zheng Jie * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in complianc 阅读全文
posted @ 2021-07-14 15:12 JLCUI 阅读(146) 评论(0) 推荐(0)
摘要: package mob.push.api; public class test { @SuppressWarnings("deprecation") public static void main(String[] args) { int i1 = 1; int i2 = 1; Integer in 阅读全文
posted @ 2021-06-04 10:41 JLCUI 阅读(1048) 评论(0) 推荐(1)
摘要: 1.添加PRIMARY KEY(主键索引) mysql>ALTER TABLE `table_name` ADD PRIMARY KEY ( `column` ) 2.添加UNIQUE(唯一索引) mysql>ALTER TABLE `table_name` ADD UNIQUE ( `column 阅读全文
posted @ 2021-06-03 11:33 JLCUI 阅读(1322) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 20 下一页