摘要: 1. '^'和'$' 首尾符号 ^a a 开头; b$ b结尾; ^ab$ 只有ab; ab 包含 ab; 2. 出现次数 * ab* 若干个b ab abbbb abbb.... + 至少一个 ?一个或者.0个 写在需要重复不确定的字符串后面 *(0到无穷) +(1到无穷) ?(0/1) 3. { 阅读全文
posted @ 2019-03-18 11:34 G_Lybbh 阅读(242) 评论(0) 推荐(0) 编辑
摘要: { "access_token": "19_pNVNyZVX5WgtPdFarp5epawu7S-0hJTv1nvQuDJTjcUaCS_gotVa_7_-eoLhPgs2K2eKZRXuEtuONJYrW4SH3qFKhLl1-QApZ57ZqtapADJcwD6uREzmEusulyUTPHjA 阅读全文
posted @ 2019-03-15 16:50 G_Lybbh 阅读(1004) 评论(0) 推荐(0) 编辑
摘要: 1. Jsonobject 和JsonArray JSONObject的数据是用 { } 来表示的 而JSONArray,顾名思义是由JSONObject构成的数组,用 [ { } , { } , ...... , { } ] 来表示 2.import net.sf.json.JSONObject; 阅读全文
posted @ 2019-03-15 14:49 G_Lybbh 阅读(206) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/cxjsnail/article/details/80018519 1. 安装IntelliJ IDEA IDEA 对maven有完美的支持,有强大的语法提示,因此强烈建议使用IDEA(请下载Ultimate版本) 提示:通过学生认证可免费使用 2. 使用 阅读全文
posted @ 2019-03-14 22:22 G_Lybbh 阅读(1968) 评论(0) 推荐(0) 编辑
摘要: 1.引用官方网站<link rel="stylesheet" type="text/css" href="http://www.w3cschool.cc/try/jeasyui/themes/default/easyui.css"/><link rel="stylesheet" type="text 阅读全文
posted @ 2019-03-12 15:28 G_Lybbh 阅读(1037) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-03-11 15:02 G_Lybbh 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 单个修改 右击 选择properties 阅读全文
posted @ 2019-03-11 14:38 G_Lybbh 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 1.修改D:\tools\tomcat\tomcat - 7\apache-tomcat-7.0.91\bin tomcat 路径下bin 文件的catalina.bat文件 添加 JAVA_OPTS="-server -Xms1024m -Xmx1024m -XX:MaxNewSize=512m 阅读全文
posted @ 2019-03-11 14:35 G_Lybbh 阅读(1616) 评论(0) 推荐(0) 编辑
摘要: String s = "adfbkjfl";// 长度1. int l = s.length();// 最后一位对应字符2. String n = s.charAt(l-1)+"";// 遍历 for(char i='a';i<='z';i++){// 第n个 以n拆分 String[] ss = 阅读全文
posted @ 2019-03-05 14:28 G_Lybbh 阅读(260) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/s1547823103/article/details/80293832 阅读全文
posted @ 2019-03-05 10:27 G_Lybbh 阅读(131) 评论(0) 推荐(0) 编辑