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.
このコードを使用して、今日の日付を取得して表示します
m_today = Calendar.getInstance();
次の3か月の日付を取得するにはどうすればよいですか?このようなもの:
2012年11月21日から2013年2月21日
最初の部分を表示できますが、2番目の部分を表示するにはどうすればよいですか?
これはうまくいくはずです、
Calendar cal = Calendar.getInstance(); //Get the Calendar instance cal.add(Calendar.MONTH,3);//Three months from now cal.getTime();// Get the Date object
m_today.add(Calendar.MONTH, 3);