标签:dem style static java 基础 amp class ram web date
package com.exjor.webdemo; import java.sql.Timestamp; import java.util.Date; public class SQLFun { /** * 将java.util.Date类型的对象转换为 java.sql.Timestamp类型 * @param pDate 为null,则返回null * @return */ public static Timestamp Date2Timestamp(Date pDate) { Timestamp stamp = null; if(pDate!=null) { stamp = new Timestamp(pDate.getTime()); } return stamp; } }
标签:dem style static java 基础 amp class ram web date
原文地址:http://www.cnblogs.com/liuweitoo/p/7191455.html