2

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

但是在我的 selenium webdriver 中,我总是得到 12/06/09。我怎样才能得到我在excel中使用的原始格式

如何在 selenium webdriver 中获取当前年份?

4

1 回答 1

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());

输出将是当前日期和时间,例如“Tue 11-06-2013 08:40:30 PM”

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

于 2013-06-11T15:13:07.683 回答