摘要: 来自: https://blog.csdn.net/Sakuraaaaaaa/article/details/107280162 HttpsUtil 工具类 import org.apache.http.config.Registry; import org.apache.http.config.R 阅读全文
posted @ 2021-04-21 09:56 我没有出家 阅读(535) 评论(0) 推荐(0) 编辑
摘要: 1. mysqld --user=root 2. service mysqld start 阅读全文
posted @ 2021-04-06 10:54 我没有出家 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 1. git log #查看历史提交记录 ,按向下箭头进行向下翻页,按Q键退出查看日志 2. git reset --hard HEAD^ #回退到上个版本 git reset --hard HEAD~3 #回退到前3次提交之前,以此类推,回退到n次提交之前 git reset --hard com 阅读全文
posted @ 2021-04-01 11:00 我没有出家 阅读(99) 评论(0) 推荐(0) 编辑
摘要: CREATE DEFINER=`root`@`localhost` PROCEDURE `use1`() begin DECLARE myid VARCHAR(255); DECLARE no int; DECLARE mycursor CURSOR FOR SELECT `name` from s 阅读全文
posted @ 2021-04-01 09:17 我没有出家 阅读(27) 评论(0) 推荐(0) 编辑
摘要: import net.sourceforge.pinyin4j.PinyinHelper; import net.sourceforge.pinyin4j.format.HanyuPinyinCaseType; import net.sourceforge.pinyin4j.format.Hanyu 阅读全文
posted @ 2021-03-31 13:08 我没有出家 阅读(93) 评论(0) 推荐(0) 编辑
摘要: <!-- 判断文件编码格式 --> <dependency> <groupId>org.apache.any23</groupId> <artifactId>apache-any23-encoding</artifactId> <version>1.1</version> </dependency> 阅读全文
posted @ 2021-03-31 10:06 我没有出家 阅读(143) 评论(0) 推荐(0) 编辑
摘要: select GROUP_CONCAT(name) from test GROUP BY age 阅读全文
posted @ 2021-03-30 16:49 我没有出家 阅读(444) 评论(0) 推荐(0) 编辑
摘要: import net.sourceforge.pinyin4j.PinyinHelper; import net.sourceforge.pinyin4j.format.HanyuPinyinCaseType; import net.sourceforge.pinyin4j.format.Hanyu 阅读全文
posted @ 2021-03-30 15:48 我没有出家 阅读(43) 评论(0) 推荐(0) 编辑
摘要: public class maopaipaixu { public static void main(String[] args) { int [] num ={1,7,2,5,9,4,2,11,10,3}; int[] sort = sort(num); System.out.println(Ar 阅读全文
posted @ 2021-02-07 09:57 我没有出家 阅读(44) 评论(0) 推荐(0) 编辑
摘要: public class erfenchazhao { public static void main(String[] args) { int [] num ={1, 2, 2, 3, 4, 5, 7, 9, 10, 11}; int search = search(num, 14); Syste 阅读全文
posted @ 2021-02-07 09:37 我没有出家 阅读(61) 评论(0) 推荐(0) 编辑