import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
öffentliche Klasse DateIO {
public static void main(String[] args) {
Datum date= new DateIO().strToDate("2013-04-01");
String strdate=new DateIO().dateToStr(date);
String srrdate=new DateIO().timestampToStr(System.currentTimeMillis());
Zeitstempel ts=new DateIO().strToTimestamp(new Date());
}
//String 转换为 Datum
öffentliches Datum strToDate(String strdate){
DateFormat format = new SimpleDateFormat("yyyy-MM-dd");
Datum date = null;
versuchen {
date = format.parse(strdate);
} Catch (ParseException e) {
e.printStackTrace();
}
System.out.println("date:"+date);
Rückgabedatum;
}
//Datumszeichenfolge
public String dateToStr(Datum date){
//年月日****-**-**
DateFormat format = new SimpleDateFormat("yyyy-MM-dd");
String str = format.format(date);
System.out.println("str:"+str);
//年月日**-*-*
format = DateFormat.getDateInstance(DateFormat.SHORT);
str = format.format(Datum);
System.out.println(str);
//年月日****-*-*
format = DateFormat.getDateInstance(DateFormat.MEDIUM);
str = format.format(Datum);
System.out.println(str);
//****年*月*日星期*
format = DateFormat.getDateInstance(DateFormat.FULL);
str = format.format(Datum);
System.out.println(str);
return str;
}
//ZeitstempelString
public String timestampToStr(Long timestamp){
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//定义格式,不显示毫秒
String str = df.format(timestamp);
System.out.println(str);
return str;
}
//Datum und Zeitstempel
öffentlicher Zeitstempel strToTimestamp(Datum Datum){
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String time = df.format(date);
Zeitstempel ts = Timestamp.valueOf(time);
System.out.println(ts);
Rückkehr ts;
}
}