摘要: /** * @author szc * @date 2021/4/21 - 16:42 */ public class test4 { public static void main(String[] args) throws IOException { String strUrl = "https 阅读全文
posted @ 2021-04-21 16:52 我没有出家 阅读(987) 评论(0) 推荐(0)
摘要: 来自: 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 我没有出家 阅读(577) 评论(0) 推荐(0)
摘要: 1. mysqld --user=root 2. service mysqld start 阅读全文
posted @ 2021-04-06 10:54 我没有出家 阅读(92) 评论(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 我没有出家 阅读(116) 评论(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 我没有出家 阅读(34) 评论(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 我没有出家 阅读(100) 评论(0) 推荐(0)
摘要: <!-- 判断文件编码格式 --> <dependency> <groupId>org.apache.any23</groupId> <artifactId>apache-any23-encoding</artifactId> <version>1.1</version> </dependency> 阅读全文
posted @ 2021-03-31 10:06 我没有出家 阅读(159) 评论(0) 推荐(0)
摘要: select GROUP_CONCAT(name) from test GROUP BY age 阅读全文
posted @ 2021-03-30 16:49 我没有出家 阅读(468) 评论(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 我没有出家 阅读(54) 评论(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 我没有出家 阅读(52) 评论(0) 推荐(0)