上一页 1 ··· 5 6 7 8 9
摘要: 如果在Struts中配置数组,那么最好不要使其数组名与PO中的一致,否则在页面显示时会出现数组一地址。例:配置如下:<form-bean name="oecMoneyReportLazyForm" extends="fullLazyForm"> <form-property name="_plan" type="java.lang.String[]" /> <form-property name="_result" type="java.lang.Stri 阅读全文
posted @ 2008-09-26 12:05 ethanwoo 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 实际开发中可能会用到树状查询结果,语句如下:select ID, LPAD(DEPT_NAME, LENGTH(DEPT_NAME) + (LEVEL * 2), ' ') dept_name from DEPT_INFOwhere IS_DEL = 0start with ID = 1connect by prior ID = PAR_ID程序解释:LPAD(DEPT_NAME, LENGTH(DEPT_NAME) + (LEVEL * 2), ' ') dept_nameLPAD:Oracle中查询关键字,' ':为前面补齐的字符Dept_n 阅读全文
posted @ 2008-09-26 12:03 ethanwoo 阅读(368) 评论(0) 推荐(0) 编辑
摘要: 1、得到系统当前时间:java.util.Date dt=new java.util.Date();System.out.print(dt); //输出结果是:Wed Aug 10 11:29:11 CST 2005SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");System.out.print(sdf.format(dt)); //输出结果是:2005-08-102、jstl标签对日期格式化,按后面的格式进行输出:<fmt:formatDate value="${…}" patter 阅读全文
posted @ 2008-09-26 12:02 ethanwoo 阅读(528) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9