2013年1月10日木曜日
2013年1月9日水曜日
java string型をdate型へ変換
SimpleDateFormat sdf = new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy", Locale.ENGLISH);
Date date = sdf.parse(string);
完成バージョン
- private static Date _string2date(String value) {
- SimpleDateFormat format = new SimpleDateFormat(DATE_PATTERN);
- try {
- return format.parse(value);
- } catch (ParseException e) {
- return null;
- }
- }
2013年1月8日火曜日
struts2 アクションエラー jspでの表示
<s:if test="hasActionErrors()"> <div class="errors"> <s:actionerror/> </div> </s:if>
登録:
投稿 (Atom)