我怎样才能获得selenium webdriver的当年?

时间:2013-06-10 18:56:01

标签: selenium-webdriver

在我的Excel表格中,我使用了“12/06/2009”。

但是当我在我的selenium webdriver中时,我总是在12/06/09。 如何获得我在excel中使用的原始格式

我怎样才能获得selenium webdriver的当年?

1 个答案:

答案 0 :(得分:4)

要以所需格式提取日期,您可以使用以下内容:

SimpleDateFormat DtFormat = new SimpleDateFormat("dd/MM/yyyy");
Date date=Test.getRow(RowNum).getCell(CellNum).getDateCellValue();
System.out.println(DtFormat.format(date).toString());

现在如果单元格值是12/06/2009,它将给出o / p为12/06/2009。

对于日期格式,您需要定义以下格式:

SimpleDateFormat DtFormat = new SimpleDateFormat("E dd/MM/yyyy hh:mm:ss a");
Date date = new Date();
System.out.println(DtFormat.format(date).toString());

输出将是当前日期&时间如“星期二11-06-2013 08:40:30 PM”

根据您的要求,您可以从DtFormat中删除不需要的字段。