我正在尝试访问我创建的 Utils 类中的静态方法:
public class Utils{
public static Date convertToDate(String dateString, String dFormat){
SimpleDateFormat dateFormat = new SimpleDateFormat(dFormat, Locale.US);
Date convertedDate;
try {
convertedDate = dateFormat.parse(dateString);
Log.i("date", "convertedDate = " + convertedDate);
} catch (ParseException e) {
e.printStackTrace();
return null;
}
return convertedDate;
}
}
当我尝试像这样访问此方法时:
Utils.convertToDate("03-04-2012", "mm-dd-yyyy");
我得到一个空指针异常。
这怎么可能???