我有一个使用SimpleDateFormat的应用程序,因为多线程和SimpleDateFormat导致了一些问题。
我已经阅读了一些关于FastDateFormat的内容,但从未使用它,并且想知道如何执行以下操作。
目前我做的事情是:
String myDateString = "2015-08-10";
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Date myDate = sdf.parse(myDateString);
与使用FastDateFormat相同的是什么?
我到目前为止
FastDateFormat fdf = FastDateFormat.getInstance("yyyy-MM-dd");
但之后我没有看到一个明确的方法来返回Date实例。