我正在研究selenium webdriver并希望设置当前日期

时间:2016-04-13 10:13:44

标签: java selenium selenium-webdriver

我试过这样做:

Date date = new Date();
String lastDate = (date.toString().trim());
// display time and date using toString()
System.out.println(date.toString());

但此处系统日期显示为:

"Wed Apr 13 15:39:50 IST 2016"

我需要的只是" MM / dd / yyyy"

3 个答案:

答案 0 :(得分:0)

您需要格式化它:

DateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy");

//get current date time with Date()
Date date = new Date();

// Now format the date
String dateFormatted= dateFormat.format(date);

答案 1 :(得分:0)

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

//获取具有Date()

的系统的当前日期时间
Date date = new Date();

String date1= dateFormat.format(date);  // Now format the date

// Print the Date
System.out.println("Current date and time is " +date1);

详细信息:http://www.alltestingstuff.com/

答案 2 :(得分:0)

以下是一个例子:

SimpleDateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy");
System.out.println(dateFormat.format(new Date()));