摘要:
import java.io.*;import java.util.*;public class FileManager { public List parseFile(File file) { String str = null; List list = new ArrayList(); t... 阅读全文
摘要:
Struts中报错the request was rejected because its size (***) exceeds the configured maximum (2097152)最新解决方案是在struts.xml中设置http://bioubiou.iteye.com/blog/1... 阅读全文
摘要:
No result defined for action:原因:Action中的属性值为空的时候,Struts2的默认拦截器会报错,但是又找不到input的Result,不能够把错误返回,所以报这种错误。解决方法:1.在页面中给空值赋默认值。2.重新定义一个Action,去掉空值的成员变量。3.添加... 阅读全文
摘要:
jQuery1、几种获取子元素的方法及区别children方法获得的仅仅是元素一下级的子元素,即:immediate children。find方法获得所有下级元素,即:descendants of these elements in the DOM treechildren方法的参数selecto... 阅读全文