当前位置: 技术问答>java相关
那在JAVA中怎样调用时间?(我是菜鸟)
来源: 互联网 发布时间:2015-01-25
本文导语: 在javascript中对时间的定义是这样的:var time1=new Date(); 那在JAVA中怎样调用时间?是不是 Time t1=new Time();我是菜鸟 给20分 | import java.sql.*; Timestamp currentTime=new Timestamp(System.currentTimeMillis()); ...
在javascript中对时间的定义是这样的:var time1=new Date();
那在JAVA中怎样调用时间?是不是 Time t1=new Time();我是菜鸟
给20分
那在JAVA中怎样调用时间?是不是 Time t1=new Time();我是菜鸟
给20分
|
import java.sql.*;
Timestamp currentTime=new Timestamp(System.currentTimeMillis());
获取当前时间
currentTime=Timestamp.valueOf(lastAccessDatetime);
把上次记录的时间调出来(一般是字符格式)
好像还有java.util.date,不过不好用
Timestamp currentTime=new Timestamp(System.currentTimeMillis());
获取当前时间
currentTime=Timestamp.valueOf(lastAccessDatetime);
把上次记录的时间调出来(一般是字符格式)
好像还有java.util.date,不过不好用
|
public String reformat()
{
Date today = new Date();
SimpleDateFormat formatter = new SimpleDateFormat("yyyy.MM.dd G 'at' hh:mm:ss z");
try
{
String dateString = formatter.format(today);
return dateString;
} catch (IllegalArgumentException iae) {
result.setForeground(Color.red);
result.setText("Error: " + iae.getMessage());
}
}
{
Date today = new Date();
SimpleDateFormat formatter = new SimpleDateFormat("yyyy.MM.dd G 'at' hh:mm:ss z");
try
{
String dateString = formatter.format(today);
return dateString;
} catch (IllegalArgumentException iae) {
result.setForeground(Color.red);
result.setText("Error: " + iae.getMessage());
}
}