gpt4 book ai didi

groovy - 在 apache-nifi 中使用 groovy

转载 作者:行者123 更新时间:2023-12-04 00:51:18 26 4
gpt4 key购买 nike

我已经生成了带有日期属性的流文件,然后我想对我的日期进行一些更改:

import java.nio.charset.StandardCharsets 
import org.apache.commons.io.IOUtils
import org.apache.nifi.processor.io.StreamCallback

def flowfile = session.get()
def date=flowfile.getAttribute('date')
def yourDate= new GregorianCalendar(date)
def newdate= yourDate.getTimeInMillis()+621355968000000000
if(!flowfile) return
flowfile = session.putAttribute(flowfile, '12321312'+'_'+newdate)
session.transfer(flowfile, REL_SUCCESS)

但是 executescript posecor 给我异常:无法在空对象上调用 getAtribute,我该怎么办?

最佳答案

如果您的 date 属性的值为:2012/02/02 00:00:00.000'Z'

解析日期并将其转换为毫秒的常规代码可能是这样的:

def flowfile = session.get()
if(!flowfile) return
def date=flowfile.getAttribute('date')
//parse the string that contains date to java.util.Date
date = Date.parse('yyyy/MM/dd HH:mm:ss.SS', date)

//get milliseconds
def millis = date.getTime()
//add some magic number ?
millis+=6200000000000000
//set new attribute value
flowfile = session.putAttribute(flowfile, 'date', '12321312'+'_'+millis)
session.transfer(flowfile, REL_SUCCESS)

以上所有你都可以用UpdateAttribute processor_

只需使用以下 nifi expression 定义名为 date 的新属性:

12321312_${date:toDate("yyyy/MM/dd HH:mm:ss.SS"):toNumber():plus(6200000000000000)}

两种变体都给出了结果:

12321312_6201328133600000

PS:我还是不明白你期望的值是什么6214887820800000

关于groovy - 在 apache-nifi 中使用 groovy,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45614127/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com