Tag Archives: Date

Java, JSP: 現在時刻が指定期間内か判定する – GregorianCalendar#before、after

日時を扱うクラスはDateとGregorianCalendarがありますが、Sunは後者を推奨しているようです。実際GregorianCalendarのほうが扱いやすいです。下のサンプルは、現在時刻が指定した期間内か否か … Continue reading

Posted in Java | Tagged , , , | 1 Comment

Python: 現在の日付・時刻の取得と出力 – datetimeクラスの属性、today()、strftime()メソッド

ソースコード #!/usr/bin/python # coding: UTF-8 # 現在の日付・時刻の取得と出力 | datetimeクラスの属性、today()、strftime()メソッドの使い方 import d … Continue reading

Posted in Python | Tagged , , | 1 Comment