摘要:
// 手机号码前三后四脱敏 String PHONE = listmap.get("PHONE")+""; if (StringUtils.isEmpty(PHONE) || (PHONE.length() != 11)) { listmap.put("PHONE", PHONE); }else { listmap.put("PHONE", PHONE.replaceAll("...
阅读全文
posted @ 2019-03-05 19:22
菜鸟01号
阅读(523)
推荐(0)
编辑
摘要:
public String getRemortIP(HttpServletRequest request) { String ip = request.getHeader("x-forwarded-for"); if ((ip == null) || (ip.length() == 0) || "u
阅读全文
posted @ 2019-03-05 19:21
菜鸟01号
阅读(121)
推荐(0)
编辑
摘要:
方式: js前端请求: function getOcrInfo(imageData){ $.ajax({ url: 'http://localhost:8080/LSWS/ws/ocr/getWebImageRecognitionJsonStringByBase64Image', type: 'post', dataType:'json', //async:false, ...
阅读全文
posted @ 2019-03-05 19:18
菜鸟01号
阅读(231)
推荐(0)
编辑
posted @ 2019-03-05 19:17
菜鸟01号
阅读(2)
推荐(0)
编辑
摘要:
常用JS验证函数总结 /** * 检查输入的一串字符是否全部是数字 * 输入:str 字符串 * 返回:true 或 flase; true表示为数字 */ function checkNum(str){ return str.match(/\D/) == null; } /** * 检查输入的一串
阅读全文
posted @ 2019-03-05 19:13
菜鸟01号
阅读(369)
推荐(0)
编辑