Raible's Wiki

Raible Designs
Wiki Home
News
Recent Changes

AppFuse

Homepage
  - Korean
  - Chinese
  - Italian
  - Japanese

QuickStart Guide
  - Chinese
  - French
  - German
  - Italian
  - Korean
  - Portuguese
  - Spanish
  - Japanese

User Guide
  - Korean
  - Chinese

Tutorials
  - Chinese
  - German
  - Italian
  - Korean
  - Portuguese
  - Spanish

FAQ
  - Korean

Latest Downloads

Other Applications

Struts Resume
Security Example
Struts Menu

Set your name in
UserPreferences


Referenced by
AppFuseSupport




JSPWiki v2.2.33

[RSS]


Hide Menu

AppFuseStrutsDates


Difference between version 6 and version 5:

At line 83 added 21 lines.
Here are the DateConverter methods:
{{{
private static SimpleDateFormat standardDateFormat = new SimpleDateFormat(
"dd/MM/yyyy");
public static Date convertDateStringToDate(String dateStr) {
try {
return standardDateFormat.parse(dateStr);
} catch (ParseException pe) {
return null;
}
}
public static String convertDateToDateString(Date date) {
return standardDateFormat.format(date);
}
}}}

Back to AppFuseStrutsDates, or to the Page History.