我希望在NIFI中使用Jolt处理器实现以下JSON转换
输入JSON
{
"street":"92 Lee St."
"state":"ON"
"country":"CA"
}输出JSON应为
{
"street":"92 Lee St."
"state":"Ontario"
"country":"Canada"
}有没有办法使用现有的Jolt操作来做到这一点,或者我需要编写自定义操作?
谢谢。
https://stackoverflow.com/questions/41404834
复制相似问题