文章列表
<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 ...
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 ...