Defry

博客园 首页 新随笔 联系 订阅 管理
上一页 1 2 3 4 5 6 7 ··· 10 下一页

2015年6月19日 #

摘要: window.setInterval()功能:按照指定的周期(以毫秒计)来调用函数或计算表达式。语法:setInterval(code,millisec)解释:code:在定时时间到时要执行的JavaScript代码串,js函数millisec:设定的定时时间,用毫秒数表示。返回值:定时器的ID值,... 阅读全文
posted @ 2015-06-19 13:02 Defry 阅读(993) 评论(0) 推荐(0) 编辑

摘要: 1、迭代显示表格 ${a.nodeName} 总计 /// 阅读全文
posted @ 2015-06-19 11:04 Defry 阅读(352) 评论(0) 推荐(0) 编辑

2015年6月17日 #

摘要: Java中单例模式定义:“一个类有且仅有一个实例,并且自行实例化向整个系统提供。”显然单例模式的要点有三个;一是某个类只能有一个实例;二是它必须自行创建这个实例;三是它必须自行向整个系统提供这个实例。从具体实现角度来说,就是以下三点:一是单例模式的类只提供私有的构造函数,二是类定义中含有一个该类的静... 阅读全文
posted @ 2015-06-17 12:00 Defry 阅读(203) 评论(0) 推荐(0) 编辑

2015年6月15日 #

摘要: String zipFile = /D:/+ ".zip";StringOperator.zip(filePath, zipFile);InputStream is = null;OutputStream os = null;BufferedInputStream bis = null;Buffer... 阅读全文
posted @ 2015-06-15 13:36 Defry 阅读(241) 评论(0) 推荐(0) 编辑

摘要: private void writeFYFileToTxt(List list, HttpServletRequest request, String drxh, FileOutputStream fos, String currDate, int start, int end, List extL... 阅读全文
posted @ 2015-06-15 13:19 Defry 阅读(172) 评论(0) 推荐(0) 编辑

2015年6月12日 #

摘要: public void exportExcel(List repayXist,HttpServletRequest request,HttpServletResponse response,List listArea,String drxh) throws Exception{ log.info("... 阅读全文
posted @ 2015-06-12 14:29 Defry 阅读(374) 评论(0) 推荐(0) 编辑

2015年6月10日 #

摘要: 引自:http://blog.csdn.net/xiaoqforever/article/details/276955691,登录后默认自动选中My Objects 默认情况下,PLSQL Developer登录后,Brower里会选择All objects,如果你登录的用户是dba,要展开tabl... 阅读全文
posted @ 2015-06-10 17:45 Defry 阅读(409) 评论(0) 推荐(0) 编辑

摘要: 可参照http://gong1208.iteye.com/blog/1773177 的详细配置 1 ... 阅读全文
posted @ 2015-06-10 16:17 Defry 阅读(148) 评论(0) 推荐(0) 编辑

摘要: 1、log4j.xml 2、Java中使用private Log log =LogFactory.getLog("CARDAPP");log.info("逾期数据导入【定时任务】出现异常!");log.error... 阅读全文
posted @ 2015-06-10 14:16 Defry 阅读(539) 评论(0) 推荐(0) 编辑

摘要: 1、创建只读视图 select 语句后加上with read only (因为通过视图是可以更新对应表数据的)CREATE OR REPLACE VIEW REPAY_VIEW ASSELECT "PRI_NUMBER" from xx with read only 阅读全文
posted @ 2015-06-10 10:58 Defry 阅读(185) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 10 下一页