上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页
摘要: 现象 在使用 jquery 的ajax调用后台的接口时,如果是get方式的话,当参数中含有”#”这些等对于URI而言有着特殊含义的符号时,发现“#”字符后面的信息全被裁掉了。 比如: 上面这个URL,最终发送的时候,将是下面这个样子的 #aaa这些信息就被cut掉了。 分析 因为“#”这个字符对UR 阅读全文
posted @ 2018-03-18 09:11 mabiao008 阅读(3771) 评论(0) 推荐(0) 编辑
摘要: import java.util.ArrayList; import java.util.List; /** * 排序算法主类 * * @author eric */ class SortArray { /* * 【插入排序】 * 基本思想: 在要排序的一组数中,假设前面(n-1) [n>=2] 个数已经是排好顺序的, * 现在要把第n个数插... 阅读全文
posted @ 2017-12-27 11:28 mabiao008 阅读(344) 评论(0) 推荐(0) 编辑
摘要: package com.lyqc.utils; import org.apache.commons.lang.StringUtils; public class ValidUtils { private static final String mobile = "^(13|15|18|17|16)[0-9]{9}$"; private static final String cod... 阅读全文
posted @ 2017-12-27 11:26 mabiao008 阅读(536) 评论(0) 推荐(0) 编辑
摘要: /** * 隐藏手机号中间4位 * @param $phone * @return mixed */ function hidetel($phone){ $IsWhat = preg_match('/(0[0-9]{2,3}[-]?[2-9][0-9]{6,7}[-]?[0-9]?)/i',$phone); if($IsWhat == 1){ return pr... 阅读全文
posted @ 2017-12-26 16:24 mabiao008 阅读(147) 评论(0) 推荐(0) 编辑
摘要: import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.InputStream... 阅读全文
posted @ 2017-12-26 16:23 mabiao008 阅读(588) 评论(0) 推荐(0) 编辑
摘要: 一、数据库常用命令 1、Help查看命令提示 [sql] view plain copy help db.help(); db.yourColl.help(); db.youColl.find().help(); rs.help(); [sql] view plain copy [sql] view 阅读全文
posted @ 2017-12-05 19:48 mabiao008 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 1、https://github.com/alibaba/p3c 源码地址 本插件,完全依照:阿里巴巴Java开发手册(终极版).pdf的规则进行 2、搜索插件 依次选择:Setting >> Plugins >> Browse repositories x 选中安装即可 3、使用 Tools >> 阅读全文
posted @ 2017-10-15 21:48 mabiao008 阅读(823) 评论(0) 推荐(0) 编辑
摘要: 输出结果: 阅读全文
posted @ 2017-10-10 20:07 mabiao008 阅读(190) 评论(0) 推荐(0) 编辑
摘要: RestTemplate restTemplate = new RestTemplate(); Object result = restTemplate.getForObject("https://www.baidu.com", String.class); @Controller public class RestTemplateAction { @Autowired ... 阅读全文
posted @ 2017-10-09 18:49 mabiao008 阅读(4904) 评论(0) 推荐(0) 编辑
摘要: 1、在application.properties文件中配置spring.thymeleaf.cache=false 2、设置中勾选上自动编译 3、 <dependency> <groupId>org.springframework</groupId> <artifactId>springloade 阅读全文
posted @ 2017-09-27 12:40 mabiao008 阅读(146) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页