`
文章列表
<div class="iteye-blog-content-contain" style="font-size: 14px"></div>   JsonConfig cfg = new JsonConfig(); cfg.registerJsonValueProcessor(java.util.Date.class,new JsonValueProcessor() { private final String format="yyyy-MM-dd&qu ...

SpringMVC学习

http://sishuok.com/forum/blogPost/list/5050.html
http://www.cnblogs.com/heekui/archive/2009/07/30/1535516.html
http://www.ibm.com/developerworks/cn/data/library/techarticles/dm-1010liush/
http://gang4415.blog.51cto.com/225775/248714
/** * @param h * @return * 实现对map按照value升序排序 */ public static Map.Entry[] getSortedHashtableByValue(Map h) { Set set = h.entrySet(); Map.Entry[] entries = (Map.Entry[]) set.toArray(new Map.Entry[set .size()]); ...
<div class="iteye-blog-content-contain" style="font-size: 14px"></div>         最近用socket通讯,用IO流发送接收数据,双方约定好了接口规范,字段的长度,但是发现发过来的数据老是报数组溢出错误,后来发现windows和linux的默认编码格式不一样,前者是gbk,后者是utf-8,而一个中文gbk是2个字节,utf-8是3个字节,用getBytes()将字符串转换为字节数组,若不指定编码方式,则会根据平台的默认编码方式,故若是不指定编码格式的话的 ...
  问题一:在java中读取文件时应该采用什么编码?     Java读取文件的方式总体可以分为两类:按字节读取和按字符读取。按字节读取就是采用InputStream.read()方法来读取字节,然后保存到一个byte[]数组中,最后经常用new String(byte[]);把字节数组转换成String。在最后一步隐藏了一个编码的细节,
http://blog.csdn.net/hfw_1987/article/details/5370321
http://15838341661-139-com.iteye.com/blog/1204292
最近在项目中发现在jsp页面上遍历集合还有这种写法:   personlist为List<Person>,遍历时过滤掉name属性为“jack”的元素: <s:iterator value="personList.{?!name.equals(\"jack\")}"> <s:property value="name"/>--- <s:property value="password"/> </s:iterator>  persons为 ...
事务的几种传播特性1. PROPAGATION_REQUIRED: 如果存在一个事务,则支持当前事务。如果没有事务则开启;2. PROPAGATION_SUPPORTS: 如果存在一个事务,支持当前事务。如果没有事务,则非事务的执行;3. PROPAGATION_MANDATORY: 如果已经存在一 ...
Global site tag (gtag.js) - Google Analytics