我正在尝试以DD-MON-YY(22-OCT-15)
格式输出数据以插入到Oracle DB中。我使用了MEL表达式server.dateTime.format("dd-MMM-yy")
。这将数据输出为22-Oct-15
。见下面的片段。
<expression-component doc:name="Expression"><![CDATA[if ( flowVars.collection_opening_date == null){
flowVars.collection_opening_date = server.dateTime.format("dd-MMM-yy");
}]]></expression-component>
此代码段没有错误。 server.dateTime.format("dd-MMM-yy")
输出22-Oct-15
,我想要的格式为22-OCT-15
。我怎样才能得到我想要的格式?
答案 0 :(得分:2)
就像这样大写:server.dateTime.format("dd-MMM-yy").toUpperCase().