作成した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");
nullポインタ例外が発生します。
これはどうやってできるの???