上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页
摘要: 过程: dns解析:将域名解析为ip地址 tcp连接:TCP三次握手 发送http请求 服务器处理请求并返回http报文 浏览器解析并渲染 断开连接:TCP四次挥手 https://www.cnblogs.com/leftJS/p/10964195.html 阅读全文
posted @ 2020-03-13 11:14 saifei1125 阅读(133) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/QaStudy/p/11514883.html 阅读全文
posted @ 2020-03-13 09:16 saifei1125 阅读(79) 评论(0) 推荐(0) 编辑
摘要: public void count(String string) { char[] c=string.toCharArray(); Map<Character, Integer> map=new HashMap<Character, Integer>(); for(int i=0;i<c.lengt 阅读全文
posted @ 2020-03-11 16:01 saifei1125 阅读(392) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/jainszhang/p/10641728.html 阅读全文
posted @ 2020-03-11 14:56 saifei1125 阅读(75) 评论(0) 推荐(0) 编辑
摘要: oracle、sqlserver,select后面不能包含group by 后面没有的列 mysql在5.7之前可以,5.7及以后不可以 原因:https://blog.csdn.net/weixin_41147129/article/details/103764518 mysql5.7之后可以修改 阅读全文
posted @ 2020-03-11 11:08 saifei1125 阅读(1030) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/ac5b4690e63c 阅读全文
posted @ 2020-03-10 10:20 saifei1125 阅读(71) 评论(0) 推荐(0) 编辑
摘要: replace(oldStr,newStr); replaceAll(oldStr,newStr); 相同点:是将一个字符串的所有oldStr都替换成newStr 不同点:replace的oldStr只能是字符和字符串,replaceAll指的是正则表达式,比如'\r'回车 '\n'空格 阅读全文
posted @ 2020-02-20 15:33 saifei1125 阅读(1771) 评论(0) 推荐(0) 编辑
摘要: 方法一:使用indexof计算出第一次匹配的位置count++,然后将往后匹配,直到匹配不到 @Testpublic void searchByIndexOf(){ String str="abcjavadefjavadddjavc"; String newStr="a"; int count=0; 阅读全文
posted @ 2020-02-20 14:58 saifei1125 阅读(8447) 评论(0) 推荐(1) 编辑
摘要: https://github.com/mzlogin/awesome-adb#%E5%91%BD%E4%BB%A4%E8%AF%AD%E6%B3%95 阅读全文
posted @ 2020-01-22 14:27 saifei1125 阅读(102) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/111testing/p/11716484.html 阅读全文
posted @ 2020-01-22 14:27 saifei1125 阅读(181) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 15 下一页