我通过opencsv从csv文件导入数据以插入到mysql DB中。 opencsv导入为字符串和DB中的1个字段我需要以格式解析它:yyyy-MM-dd。但是我收到了一个错误。
// This is the string that I have extracted from the csv file
String elem1 = nextLine[0];
// printing out to console I can see the string I wish to convert
System.out.println(elem1); => 2015-08-14
// Below is my code to parse the date
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
java.util.Date convertedCurrentDate = sdf.parse(elem1);
String date=sdf.format(convertedCurrentDate );
// printing date to console gives me 2015-08-14
System.out.println(date);
如上所述,打印日期到控制台给了我2015-08-14。但是我得到了错误:
java.text.ParseException: Unparseable date: ""
有人可以就我的错误给出一些建议吗?
行'java.util.Date convertedCurrentDate = sdf.parse(elem1);'是导致错误的行。
谢谢!
答案 0 :(得分:1)
我在机器上也接受了以下测试通过
false
您运行的是哪个版本的Java?我知道最新的java 8(8u61)和JodaTime存在问题。
同样尝试上面的测试,除了日期代码之外的所有内容。
答案 1 :(得分:0)
这是执行此操作的简单示例:
SimpleDateFormat formatter = new SimpleDateFormat("dd-MMM-yyyy");
String dateInString = "7-Jun-2013";
try {
Date date = formatter.parse(dateInString);
System.out.println(date);
System.out.println(formatter.format(date));
} catch (ParseException e) {
e.printStackTrace();
}
Java 8更新
String string = "August 21, 2015";
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("MMMM d, yyyy", Locale.ENGLISH);
LocalDate date = LocalDate.parse(string, formatter);
System.out.println(date); // 2015-09-21
我认为这就是你想要的。快乐帮助谢谢