您的位置:

包含java获取系统时间的词条

本文目录一览:

java怎么获取当前系统时间?

首先获取当前时间:

java.util.Date nowdate = new java.util.Date();

2/2

然后如果你想时间的格式和你想用的时间格式一致 那么就要格式化时间了SimpleDateFormat 的包在java.text包下SimpleDateFormat

sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss") //年月日 时分秒

String t = sdf.parse(nowdate);

java怎么获取当前时间

JAVA中获取当前系统时间关键代码:

//得到long类型当前时间

long l = System.currentTimeMillis();

//new日期对象

Date date = new Date(l);

//转换提日期输出格式

SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

System.out.println(dateFormat.format(date));

完整代码:

package com.ob;

import java.text.ParseException;

import java.text.SimpleDateFormat;

import java.util.Calendar;

import java.util.Date;

public class DateTest {

    public static void main(String[] args) throws ParseException {

        //得到long类型当前时间

        long l = System.currentTimeMillis();

        //new日期对象

        Date date = new Date(l);

        //转换提日期输出格式

        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

        System.out.println(dateFormat.format(date));

    }

}

输出结果:

2017-01-06 12:28:19

java如何得到系统时间,Date型

java 得到系统时间,直接私用Date类型,直接生成一个对象即可,示例如下:

import java.util.Date;

import java.text.DateFormat;

import java.text.SimpleDateFormat;     

          Date dt=new Date();//如果不需要格式,可直接用dt,dt就是当前系统时间

         DateFormat df = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");//设置显示格式

 String nowTime="";

        nowTime= df.format(dt);//用DateFormat的format()方法在dt中获取并以yyyy/MM/dd HH:mm:ss格式显示