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.
日付ピッカーから日付を選択できる入力フィールドがあります。この選択した値に基づいて、30日前の日付を取得する必要があります。
前もって感謝します。
Calendar cal = Calendar.getInstance(); cale.add(Calendar.DATE, -30); System.out.println("Date = " + cal.getTime());