04 2016 档案
-
Jquery图片上传预览效果
摘要:uploadPreview.js jquery-1.9.1.min.js http://www.2cto.com/kf/201402/281430.html 阅读全文
-
springMVC文件上传
摘要:http://blog.csdn.net/niuch1029291561/article/details/17377903 阅读全文
-
自动将String类型的XML解析成实体类
摘要:package com.mooc.freemarker2dto; public class BaseDto { } package com.mooc.freemarker2dto; public class Book extends BaseDto{ private String name; private String author; p... 阅读全文
-
Freemarker xml
该文被密码保护。
-
利用freemarker生成xml
摘要:book.ftl 阅读全文
-
将String类型的XML解析并设置到实体类中
摘要:package com.mooc.string; import java.util.ArrayList; import java.util.List; import org.dom4j.Document; import org.dom4j.DocumentException; import org.dom4j.DocumentHelper; import org.dom4j.Element... 阅读全文
-
System.arraycopy
摘要:public static void arraycopy(Object src, int srcPos, Object dest, int destPos, int length) src:源数组; srcPos:源数组要复制的起始位置; dest:目的数组; destPos:目的数组放置的起始位置 阅读全文
-
HashMap的笔记
摘要:size表示HashMap中存放KV的数量 capacity译为容量。capacity就是指HashMap中桶的数量。默认值为16。一般第一次扩容时会扩容到64,之后好像是2倍。总之,容量都是2的幂。 loadFactor loadFactor译为装载因子。装载因子用来衡量HashMap满的程度。l 阅读全文
-
Java动态代理
摘要:http://www.cnblogs.com/xiaoluo501395377/p/3383130.html 阅读全文
-
导出Excel
摘要:http://blog.csdn.net/ptzrbin/article/details/8751293 阅读全文
-
将Excel生成实体类
摘要:package com.excel.test; import java.util.List; public class createUtil { public static String appendPrivate(List types,List attributes,List mark){ StringBuffer sb = new StringBuffer(); if(ty... 阅读全文
-
JSON日期格式处理
摘要:protected static SerializeConfig mapping = new SerializeConfig(); private static String dateFormat; static { dateFormat = "yyyy-MM-dd HH:mm:ss"; mapping.put(Date.class, new S... 阅读全文
-
Layer
摘要:http://layer.layui.com/api.html 关闭子页面,刷新父页面指定的方法 window.parent.onload = parent.method; 阅读全文
-
bsgrid
摘要:网址:http://bsgrid.oschina.mopaasapp.com/ var total = gridObj.options.totalRows; jquery必须放在bsgrid的前面 根据条件生成不同的操作 格式化金额: <th w_index="amt" w_render="rend 阅读全文
-
eclipse从数据库逆向生成Hibernate实体类
摘要:http://m.blog.csdn.net/article/details?id=6877720 阅读全文
-
『jQuery』.html(),.text()和.val()的概述及使用
摘要:.html():读取和修改一个元素的HTML内容,详情.html(); .text():读取和修改一个元素的文本内容,详情.text(); .val():读取和修改一个表单元素的value字段值,详情.val()。 http://www.jb51.net/article/35867.htm 阅读全文
-
手机号显示格式157****4616
摘要:phone.replaceAll("(\\d{3})\\d{4}(\\d{4})", "$1****$2") 阅读全文
-
JQuery中的push和join
摘要:push:向数组中添加元素 阅读全文
-
获取光标时隐藏错误信息
摘要:$('#person_name,#person_password,#person_captcha').focus(function () { $("#errorMsg").slideUp(); }); 阅读全文
-
Spring Security
摘要:http://liukai.iteye.com/blog/982088 阅读全文
-
用过sessionid防钓鱼
摘要:http://www.cnblogs.com/BearsTaR/archive/2010/08/24/URL_SESSION_ID_LEEK.html DisableUrlSessionFilter 阅读全文