0
My Flow的屬性'05 -05-2015'。我需要在NiFi中找到該日期的一週。如何查找日期值的一週?
For example:
if date is 05 then it is belongs to 1st week of the year.
我不應該使用腳本/程序的查找星期。
我需要找出僅使用NiFi表達式語言。
任何人都可以建議這樣做嗎?
My Flow的屬性'05 -05-2015'。我需要在NiFi中找到該日期的一週。如何查找日期值的一週?
For example:
if date is 05 then it is belongs to 1st week of the year.
我不應該使用腳本/程序的查找星期。
我需要找出僅使用NiFi表達式語言。
任何人都可以建議這樣做嗎?
假設eee
是您的屬性
然後表達
${eee:toDate('MM-dd-yyyy'):format('u E')}
輸出: 2 Tue
格式參考:
http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html