`
rogue0608
  • 浏览: 7476 次
  • 性别: Icon_minigender_1
  • 来自: 福建
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
<html> <head> <script type="text/javascript"> function addRow(){ var newTr = document.getElementById("peopleTable").insertRow(); var newTd0 = newTr.insertCell(); var newTd1 = newTr.insertCell(); newTd0.width = 50; newTd0.align = 'right'; newT ...
str.replace("\\s+", "");//去除全角空格
to_date     select to_date('2005-01-01 13:14:20','yyyy-MM-dd HH24:mi:ss') from dual; to_char     select to_char(sysdate,'yyyy-MM-dd HH24:mi:ss') from dual;//mi是分钟
(残梦追月原创,转载请注明) 本文地址:http://www.blogjava.net/cmzy/archive/2008/09/11/228271.html Spring API Doc的说明如下:    RowMapper implementation that converts a row into a new instance of the specified mapped target class. The mapped target class must be a top-level class and it must have a default or no-arg con ...
关于str.equals("abc")需要多一个str是否为null的判断。否则这里是有可能出现异常的。而后一种写法"abc".equals(str)不需要多做关于是否为null这个判断。
package com.util.quartz; import java.io.File; import java.io.IOException; import java.util.Map; import javax.servlet.ServletContext; import org.apache.commons.io.FileUtils; import org.quartz.Job; import org.quartz.JobExecutionContext; import org.quartz.JobExecutionException; public class DeleteTe ...

iframe高度自适应

    博客分类:
  • js
//设置iframe高度自适应 function setWinHeight(obj){ var win = obj; if (document.getElementById) { if (win && !window.opera) { if (win.contentDocument && win.contentDocument.body.offsetHeight) { win.height = win.contentDocument.body.offsetHeight; } else if (win.Document &am ...
/** * 图像切割(改) * * * @param srcImageFile *            源图像地址 * @param dirImageFile *            新图像地址 * @param x *            目标切片起点x坐标 * @param y *            目标切片起点y坐标 * @param destWidth *            目标切片宽度 * @param destHeight *            目标切片高度 */ public static void ...
Global site tag (gtag.js) - Google Analytics