会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
_情书
越过山丘才发现无人等候
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
下一页
2019年12月30日
隐藏手机号身份证号中间的数字
摘要: public class StringUtil { /** * 屏蔽身份证号 * @param src * @param find * @return */ public static String screenIdentityCard(String idCard) { String identit
阅读全文
posted @ 2019-12-30 11:08 _情书
阅读(310)
评论(0)
推荐(0)
2019年12月26日
java 后端请求第三方接口 包含post请求和get请求
摘要: public class HttpRequest { private static boolean debug = true; //get请求 public static String sendGet(String url, String param) { if (!debug) { return
阅读全文
posted @ 2019-12-26 17:58 _情书
阅读(3074)
评论(0)
推荐(0)
2019年12月24日
java 导出 Excel 表格
摘要: import jxl.Workbook; import jxl.write.*; //导入的两个包 <dependency> <groupId>net.sourceforge.jexcelapi</groupId> <artifactId>jxl</artifactId> <version>2.6.
阅读全文
posted @ 2019-12-24 14:25 _情书
阅读(1130)
评论(0)
推荐(0)
2019年12月5日
根据时间段查询数据并按照降序排列
摘要: select * from 表名 where 目标字段(一般都是唯一id) = #{字段变量} and 时间字段 BETWEEN #{开始时间} and #{结束时间} ORDER BY 时间字段 DESC(降序) 默认则是升序 按时间段查询相关数据 order by desc 是按照降序排列 没有
阅读全文
posted @ 2019-12-05 19:35 _情书
阅读(1901)
评论(0)
推荐(0)
2019年11月29日
Json数组(以[ ] 中括号开头)字符串转为json对象
摘要: 以 [] 开头的json数组字符串: str = "[{ "姓名":"张三", "年龄":"28" }]" //其中str为字符串格式 JSONArray jsonArray = JSONArray.fromObject(str); //如果是以{}开头的字符串 str = "{ "姓名":"张三"
阅读全文
posted @ 2019-11-29 16:50 _情书
阅读(6372)
评论(0)
推荐(1)
Java 后台请求第三方系统接口详解
摘要: //调用第三方系统接口 PrintWriter out = null; BufferedReader in = null; JSONObject jsonObject = null; CloseableHttpResponse response = null; String result = "";
阅读全文
posted @ 2019-11-29 16:42 _情书
阅读(2859)
评论(0)
推荐(0)
Map 集合 和 String 字符串相互转换工具类
摘要: 1 package com.skynet.rimp.common.utils.util; 2 3 import java.util.Arrays; 4 import java.util.HashMap; 5 import java.util.Map; 6 import java.util.Set;
阅读全文
posted @ 2019-11-29 16:36 _情书
阅读(7742)
评论(0)
推荐(0)
AES 对称加密
摘要: 1 package com.skynet.rimp.common.utils.string; 2 3 import java.io.UnsupportedEncodingException; 4 import java.security.InvalidKeyException; 5 import j
阅读全文
posted @ 2019-11-29 16:33 _情书
阅读(225)
评论(0)
推荐(0)
2019年11月19日
Java replace() 方法 替换字符 也可用于 js 中
摘要: JAVA中:public class Test { public static void main(String args[]) { String Str = new String("hello"); System.out.print("返回值 :" ); System.out.println(St
阅读全文
posted @ 2019-11-19 17:13 _情书
阅读(730)
评论(0)
推荐(0)
js 生成32位随机数,可用于微信支付流水号(前端生成)
摘要: $(function () { /*生成32位随机流水号*/ /*默认去掉了容易混淆的字符oOLl,9gq,Vv,Uu,I1*/ var $chars = 'ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678'; var maxPos = $chars.
阅读全文
posted @ 2019-11-19 16:28 _情书
阅读(3920)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
下一页
公告