在我想要抓取的一个网站上,我有这样的格式日期和时间:
<div id="date">11 october 2010 <span>|</span> 21:43</div>
起初我想把时间和日期分成两个变量,然后把它推到我的mysql表中。
以及我需要更改smth中的格式日期,如下所示:2013-05-10
现在我只有这个:
String date = (driver.findElement(By.id("date"))).getText();
我如何拆分和更改此格式?
答案 0 :(得分:2)
我认为日期字符串包含“2010年10月11日| 21:43”之类的内容。您可以使用SimpleDateFormat。在你的情况下,这应该工作:
SimpleDateFormat simpleDateFormatIn =
new SimpleDateFormat("dd MMMM yyyy '|' HH:mm", Locale.ENGLISH);
SimpleDateFormat simpleDateFormatOut =
new SimpleDateFormat("yyyy-MM-dd", Locale.ENGLISH);
String dateStr = (driver.findElement(By.id("date"))).getText();
Date date = simpleDateFormatIn.parse(dateStr);
System.out.println(simpleDateFormatOut.format(date));
可以找到一个关于此问题的小博客here: