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.
日付を格納する変数 date1 があります。そこから年を取る必要があります。そこで、カレンダーをインスタンス化し、その日付を date1 の日付に設定したいと思います。次に、getYear() を使用できます。
カレンダーの設定方法
Date date1; //I set its value from database. Calendar ca1 = Calendar.getInstance(); ca1.set(date1); // doesn't work
回避策はありますか?