package com.koal.test;
import java.sql.Timestamp;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class TestDate {
public static void main(String[] args) {
strToDate();
dateToStr();
strToTimestamp();
timestampToStr();
timestampToDate();
dateToTimestamp();
}
/**string-->Date*/
@SuppressWarnings("deprecation")
public static void strToDate(){
String dateStr = "2010/02/01 12:34:23";
Date date = null;
//注意format的格式要和日期String的格式相匹配,大小写是固定的。年用y不能用Y。
DateFormat df = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
try {
date = df.parse(dateStr);
System.out.println(date.toLocaleString());
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
/** Date->String
* 日期向字符串转换,可以设置任意的转换格式format
*/
@SuppressWarnings("deprecation")
public static void dateToStr (){
String dateStr = "";
Date date = new Date();
//format的格式可以任意
DateFormat df1 = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
DateFormat df2 = new SimpleDateFormat("yyyy-MM-dd HH/mm/ss");
try {
dateStr = df1.format(date);
System.out.println(dateStr);
dateStr = df2.format(date);
System.out.println(dateStr);
//方法二
System.out.println(date.toLocaleString());
} catch (Exception e) {
e.printStackTrace();
}
}
/**String ->Timestamp
* 注:String的类型必须形如: yyyy-MM-dd HH:mm:ss[.f...] 这样的格式,中括号表示可选,否则报错!!!
* 如果String为其他格式,可考虑重新解析下字符串,再重组~~
*/
public static void strToTimestamp(){
String tsStr ="2011-05-09 11:49:45";
Timestamp ts = null;// new Timestamp(System.currentTimeMillis());
ts = Timestamp.valueOf(tsStr);
System.out.println(ts);
}
/**Timestamp ->String
* 使用Timestamp的toString()方法或者借用DateFormat
* */
@SuppressWarnings("deprecation")
public static void timestampToStr(){
Timestamp ts = new Timestamp(System.currentTimeMillis());
String tsStr ="";
DateFormat df = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
//方法一使用DateFormat:因为Date转化为String可应用DateFormat,Timestamp是Date的子类,所以可以用。
tsStr = df.format(ts);
System.out.println(tsStr);
//方法二
System.out.println(ts.toLocaleString());//本地时间
System.out.println(ts.toString()+"dd");//带毫秒的时间
}
/**Timestamp ->Date*/
@SuppressWarnings("deprecation")
public static void timestampToDate(){
Timestamp ts = new Timestamp(System.currentTimeMillis());
//Timestamp 是Date的子类
Date date =null;
date = ts;
System.out.println(date.toLocaleString());
System.out.println(date.toString());
}
/** Date -->Timestamp
*/
//父类不能直接向子类转化,可借助中间的String,或者使用date.getTime();
@SuppressWarnings("deprecation")
public static void dateToTimestamp(){
Date date = new Date();
Timestamp ts = null;
ts = new Timestamp(date.getTime());
System.out.println(ts.toString());
//方法二,使用中间的String,不可以直接使用date.toString()。因为那样的格式不符合Timestamp.valueOf(),方法所
//要求的格式。
System.out.println(date.toLocaleString());
DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
ts = Timestamp.valueOf(df.format(date));
System.out.println(ts.toString());
}
}
/**
* 关于java.sql.Date和java.util.Dat的立即
* java.sql.Date 只存储日期数据不存储时间数据
// 会丢失时间数据
preparedStatement.setDate(1, new java.sql.Date(date.getTime()));
//可以这样来处理
preparedStatement.setTimestamp(1, new java.sql.Timestamp(new java.util.Date().getTime()));
//想要得到完整的数据,包括日期和时间,可以这样
java.util.Date d = resultSet.getTimestamp(1);
//这样处理更合适一些,可以避免一些潜在Timestamp 问题
java.util.Date d = new java.util.Date(resultSet.getTimestamp(1).getTime());
自己补的话
这样的话:
往数据库存储的时候可以接收 java.util.Date类型 再用getTime()方法得到代表那个Date对象的long值,再以这个long值 构造一个Timestamp对象 存进数据库中。
从存数据库里取的时候,可以先得到Timestamp用他的getTime()方法得到long值,再以这个long值构造一个java.util.Date对象,这样就可以对这个Date对象操作了。
不如说 new SimpleTimeFormat("yyyyy-MM-dd HH:mm:ss").format()等等
*/
import java.sql.Timestamp;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class TestDate {
public static void main(String[] args) {
strToDate();
dateToStr();
strToTimestamp();
timestampToStr();
timestampToDate();
dateToTimestamp();
}
/**string-->Date*/
@SuppressWarnings("deprecation")
public static void strToDate(){
String dateStr = "2010/02/01 12:34:23";
Date date = null;
//注意format的格式要和日期String的格式相匹配,大小写是固定的。年用y不能用Y。
DateFormat df = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
try {
date = df.parse(dateStr);
System.out.println(date.toLocaleString());
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
/** Date->String
* 日期向字符串转换,可以设置任意的转换格式format
*/
@SuppressWarnings("deprecation")
public static void dateToStr (){
String dateStr = "";
Date date = new Date();
//format的格式可以任意
DateFormat df1 = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
DateFormat df2 = new SimpleDateFormat("yyyy-MM-dd HH/mm/ss");
try {
dateStr = df1.format(date);
System.out.println(dateStr);
dateStr = df2.format(date);
System.out.println(dateStr);
//方法二
System.out.println(date.toLocaleString());
} catch (Exception e) {
e.printStackTrace();
}
}
/**String ->Timestamp
* 注:String的类型必须形如: yyyy-MM-dd HH:mm:ss[.f...] 这样的格式,中括号表示可选,否则报错!!!
* 如果String为其他格式,可考虑重新解析下字符串,再重组~~
*/
public static void strToTimestamp(){
String tsStr ="2011-05-09 11:49:45";
Timestamp ts = null;// new Timestamp(System.currentTimeMillis());
ts = Timestamp.valueOf(tsStr);
System.out.println(ts);
}
/**Timestamp ->String
* 使用Timestamp的toString()方法或者借用DateFormat
* */
@SuppressWarnings("deprecation")
public static void timestampToStr(){
Timestamp ts = new Timestamp(System.currentTimeMillis());
String tsStr ="";
DateFormat df = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
//方法一使用DateFormat:因为Date转化为String可应用DateFormat,Timestamp是Date的子类,所以可以用。
tsStr = df.format(ts);
System.out.println(tsStr);
//方法二
System.out.println(ts.toLocaleString());//本地时间
System.out.println(ts.toString()+"dd");//带毫秒的时间
}
/**Timestamp ->Date*/
@SuppressWarnings("deprecation")
public static void timestampToDate(){
Timestamp ts = new Timestamp(System.currentTimeMillis());
//Timestamp 是Date的子类
Date date =null;
date = ts;
System.out.println(date.toLocaleString());
System.out.println(date.toString());
}
/** Date -->Timestamp
*/
//父类不能直接向子类转化,可借助中间的String,或者使用date.getTime();
@SuppressWarnings("deprecation")
public static void dateToTimestamp(){
Date date = new Date();
Timestamp ts = null;
ts = new Timestamp(date.getTime());
System.out.println(ts.toString());
//方法二,使用中间的String,不可以直接使用date.toString()。因为那样的格式不符合Timestamp.valueOf(),方法所
//要求的格式。
System.out.println(date.toLocaleString());
DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
ts = Timestamp.valueOf(df.format(date));
System.out.println(ts.toString());
}
}
/**
* 关于java.sql.Date和java.util.Dat的立即
* java.sql.Date 只存储日期数据不存储时间数据
// 会丢失时间数据
preparedStatement.setDate(1, new java.sql.Date(date.getTime()));
//可以这样来处理
preparedStatement.setTimestamp(1, new java.sql.Timestamp(new java.util.Date().getTime()));
//想要得到完整的数据,包括日期和时间,可以这样
java.util.Date d = resultSet.getTimestamp(1);
//这样处理更合适一些,可以避免一些潜在Timestamp 问题
java.util.Date d = new java.util.Date(resultSet.getTimestamp(1).getTime());
自己补的话
这样的话:
往数据库存储的时候可以接收 java.util.Date类型 再用getTime()方法得到代表那个Date对象的long值,再以这个long值 构造一个Timestamp对象 存进数据库中。
从存数据库里取的时候,可以先得到Timestamp用他的getTime()方法得到long值,再以这个long值构造一个java.util.Date对象,这样就可以对这个Date对象操作了。
不如说 new SimpleTimeFormat("yyyyy-MM-dd HH:mm:ss").format()等等
*/