Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
データベーステーブルを保存するために、文字列の日付を日付形式に変換したいと考えています。以下のコードは機能しません。java.lang.ClassCastExceptionを示しています:
java.lang.String cannot be cast to java.util.Date Exception
コード
Date date = (Date)hmap.get("skillexpdate");
このコードを使用できます:
DateFormat simpleDateFormat=new SimpleDateFormat("yyyy-MM-dd"); java.sql.Date dutyDay = (java.sql.Date) simpleDateFormat.parse("There is String Date");