java系统时间
⑴ java 中获取时间怎么格式化
这两个方法都可以帮助你获取和格式化Java中的时间,以满足不同的需求。如果你需要获取当前系统时间,只需创建一个新的Date对象并配合SimpleDateFormat进行格式化即可。
获取当前系统时间:
import java.util.Date;
import java.text.SimpleDateFormat;
public class NowString {
public static void main(String[] args) {
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); // 设置日期格式
System.out.println(df.format(new Date())); // 使用new Date()获取当前系统时间
}
}
以上代码展示了如何在Java中对时间进行格式化处理。
⑵ 【Java】怎样获取当前系统时间,需要的格式为yyyy-MM-dd HH:mm:ss
1、打开Eclipse的主界面,需要通过图示的按钮来引入java包。
⑶ java中如何取系统时间精确到秒
1 SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置日期格式 System.out.println(df.format(new Date()));// new Date()为获取当前系统时间
2 Calendar c = Calendar.getInstance();//可以对每个时间域单独修改
int year = c.get(Calendar.YEAR);
int month = c.get(Calendar.MONTH);
int date = c.get(Calendar.DATE);
int hour = c.get(Calendar.HOUR_OF_DAY);
int minute = c.get(Calendar.MINUTE);
int second = c.get(Calendar.SECOND);
System.out.println(year + "/" + month + "/" + date + " " +hour + ":" +minute + ":" + second);
3 Date nowTime = new Date(System.currentTimeMillis());
SimpleDateFormat
sdFormatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String
retStrFormatNowDate = sdFormatter.format(nowTime);
⑷ JAVA中获取系统当前时间该怎么写
一. 获取当前系统时间和日期并格式化输出:x0dx0ax0dx0aimport java.util.Date; x0dx0aimport java.text.SimpleDateFormat;x0dx0ax0dx0apublic class NowString { x0dx0a public static void main(String[] args) { x0dx0a SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置日期格式x0dx0a System.out.println(df.format(new Date()));// new Date()为获取当前系统时间x0dx0a } x0dx0a} x0dx0ax0dx0a二. 在数据库里的日期只以年-月-日的方式输出,可以用下面两种方法:x0dx0ax0dx0a1、用convert()转化函数:x0dx0ax0dx0aString sqlst = "select convert(varchar(10),bookDate,126) as convertBookDate from roomBook where bookDate between -4-10' and -4-25'";x0dx0ax0dx0aSystem.out.println(rs.getString("convertBookDate")); x0dx0ax0dx0a2、利用SimpleDateFormat类:x0dx0ax0dx0a先要输入两个java包:x0dx0ax0dx0aimport java.util.Date; x0dx0aimport java.text.SimpleDateFormat;x0dx0ax0dx0a然后:x0dx0ax0dx0a定义日期格式:SimpleDateFormat sdf = new SimpleDateFormat(yy-MM-dd);x0dx0ax0dx0asql语句为:String sqlStr = "select bookDate from roomBook where bookDate between -4-10' and -4-25'";x0dx0ax0dx0a输出:x0dx0ax0dx0aSystem.out.println(df.format(rs.getDate("bookDate")));