会员
周边
众包
新闻
博问
闪存
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
JLCUI
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
5
6
7
8
9
10
11
12
13
···
20
下一页
2018年4月18日
HttpServletRequest request 获取header 和 body
摘要: //获取header Enumeration headerNames = request.getHeaderNames(); while (headerNames.hasMoreElements()) { String key = (String) headerNames.nextElement()
阅读全文
posted @ 2018-04-18 09:23 JLCUI
阅读(2209)
评论(0)
推荐(0)
2018年4月17日
MD5SignUtil
摘要: package net.joystart.common.util; import java.security.MessageDigest; import java.util.Comparator; import java.util.HashMap; import java.util.Map; import java.util.TreeMap; import sun.misc.BASE64En...
阅读全文
posted @ 2018-04-17 16:05 JLCUI
阅读(272)
评论(0)
推荐(0)
http post header body
摘要: /** * 向指定 URL 发送POST方法的请求 * * @param url * 发送请求的 URL * @param param * 请求参数,请求参数应该是 name1=value1&name2=value2 的形式。 * @return 所代表远程资源的响应结果 ...
阅读全文
posted @ 2018-04-17 16:04 JLCUI
阅读(2223)
评论(0)
推荐(0)
2018年3月27日
js时间比较大小
摘要: var st=$("#startdate").datetimebox('getValue'); var et=$('#enddate').datetimebox('getValue'); if(dateCompare(st,et)==false){ $.messager.alert('消息','失效
阅读全文
posted @ 2018-03-27 16:42 JLCUI
阅读(367)
评论(0)
推荐(0)
2018年3月8日
获取radio选择值
摘要: <input type="radio" name="address" value="0" /> <input type="radio" name="address" value="1" /> <input type="radio" name="address" value="2" /> js中 :
阅读全文
posted @ 2018-03-08 12:04 JLCUI
阅读(108)
评论(0)
推荐(0)
2018年3月7日
动态添加combobox
摘要: 审批配置 *政府名称: 审批流程: 发起人(全部人员) 添加审批人 ...
阅读全文
posted @ 2018-03-07 12:00 JLCUI
阅读(277)
评论(0)
推荐(0)
2018年2月1日
http post body 参数map
摘要: /** * 作者:崔金龙 * @param urlPath * @param map * @return * @throws Exception */ public static String postBody(String urlPath, Map map) throws Exception { // 定义一个可关闭的httpClient的对象 Closea...
阅读全文
posted @ 2018-02-01 17:51 JLCUI
阅读(1079)
评论(0)
推荐(0)
2018年1月31日
jsp 写sql
摘要: $("#vehicleSourceID").combobox({ url:'<%=request.getContextPath()%>/rest/getcompany.jsp?companytype=1,2,5', valueField:'id', textField:'name', value:"
阅读全文
posted @ 2018-01-31 18:30 JLCUI
阅读(224)
评论(0)
推荐(0)
2018年1月24日
文件缓存类把文件放到缓存上
摘要: // 从缓存读取数据 String vehicleData = FileCache.Get("vdata_"+cityId, 5);//5分钟失效 // 保存到缓存 FileCache.Set("vdata_"+cityId, m);
阅读全文
posted @ 2018-01-24 15:06 JLCUI
阅读(315)
评论(0)
推荐(0)
2018年1月12日
String 转jsonObject
摘要: JsonParser parser = new JsonParser(); JsonObject jobj = parser.parse(str).getAsJsonObject(); String msg = jobj.get("message").getAsString(); String co
阅读全文
posted @ 2018-01-12 10:37 JLCUI
阅读(260)
评论(0)
推荐(0)
上一页
1
···
5
6
7
8
9
10
11
12
13
···
20
下一页
公告