<div class="cnblogs_Highlighter"> <pre class="brush:sql;gutter:true;"> @Override public String getAsText() { Date value = (Date) getValue(); for (DateFormat df : dateFormat) { try { return df.format(value); } catch (Exception e) { continue; } } return ""; } </pre> </div>