加载JSP无缘无故出现The s:form tag declares that it accepts dynamic attributes but does或者空指针,可以考虑清空webapps,work,最后考虑重启电脑- -
------------------------------
从字符串提取信息
Pattern pattern = Pattern.compile("^\\d{4}年\\d{1,2}月\\d{1,2}日$");
Matcher matcher = pattern.matcher("2000年22月23日");
if(matcher.find()){
System.out.println(matcher.group(0));
}
-------------------------------
mysqldump导出数据
mysqldump -h主机ip -P端口 -u用户名 -p密码 数据库>文件
例如
mysqldump -h192.168.110.112 -P3396 -uroot -p123456 mobileNews>C:\mobileNews.sql
--------------------------------
<input type="image" οnclick="submit()"/>会提交两次
暂时用<a href="javascript:submit()"><img src="" border="0"/></a>代替
---------------------------------
response.getOutputStream().write(compress(mapper.writeValueAsBytes(pt)));
会报错(getOutputStream() has already been called)
需要在后面加上两句
out.clear();
out = pageContext.pushBody();
----------------------------------
java压缩只支持utf-8?
----------------------------------
怒删的某eclipse可以在父目录下右键-->restore from local history恢复
----------------------------------
用text-align:center 只支持IE 是居中 但火狐是不居中
加上如下代码即可:
text-align: -moz-center !important;//火狐中
text-align:center;
注意: 这两行代码顺序 一定不要放反掉 不然是在火狐中居中 在IE中居左了
------------------------------------
Got error 28 from storage engine
mysql服务器临时空间已满,由于无法创建新指令,所以选择表右键edit会报错,其余操作会无限block状态
前台用jquery获取json
$(document).ready(function(){
$.get('m_s.action?law_id=1&offset=1&length=10',function(data){
//遍历json中的每个entry
var obj = eval( "(" + data + ")" );
$.each(obj,function(entryindex,entry){
xxoo...
});
});
});
后台需要将s:property的escape改为false
/etc/init.d/nfs restart重启NFS,用于挂载无线审核的文档数据
配置路由
1,运行route add -net 172.30.0.0/16 gw 10.1.7.254
2,vi /var/lock/subsys/local 加上上面一句话
查看samba进程
pgrep nmbd 如果没反应说明服务没有起来
启动samba
/etc/init.d/smb start
-------------------------------------------------
iframe 相同src缓存问题....在src后面加上随机数t = parseInt(Math.random())
memCache缓存的基本对象必须实现serializable接口,先持久化再载入内存....原理类似于虚拟内存?