年、月、日を Date オブジェクトから取得しようとしていますが、次のようにすると完全にランダムな結果が得られます。
Date d = new Date();
System.out.println(d.getYear() + " - " + d.getMonth() + " - " + d.getDay());
私は得る: 112 - 9 - 1
誰かが理由を知っていますか?そして、あなたはベットアポーチを持っていますか?私のプログラムでは、Date オブジェクトが必要です。