如何print/display workday studio 中的hashmap?
How to print/display the hashmap in workday studio?
我在 Workday 工作室中使用哈希图,如下所示:
props['Classification'] = parts[0].xpath('wd:All_Positions_group/wd:Classification')
props['HashValue'] = props['Classification']
props['HashKey'] = parts[0].xpath('wd:All_Positions_group/wd:Position_ID' )
props['position.hash.map'].put(props['HashKey'], props['HashValue'])
有没有办法display/print整个hashmap或者数组加载后?
您在此处使用 HashMap 的设计选择可能是一个错误 - 您应该重新考虑该选择。
如果您希望打印出地图的内容以用于诊断目的,请在其上使用 toString() 方法
props['position.hash.map'].toString()
将打印出 https://docs.oracle.com/javase/8/docs/api/java/util/AbstractMap.html#toString-- 中描述的内容。您在问这个问题之前没有查看 JavaDoc 是另一个迹象,表明您还没有完全准备好在此代码中使用 HashMap,您应该寻找替代方案
我在 Workday 工作室中使用哈希图,如下所示:
props['Classification'] = parts[0].xpath('wd:All_Positions_group/wd:Classification')
props['HashValue'] = props['Classification']
props['HashKey'] = parts[0].xpath('wd:All_Positions_group/wd:Position_ID' )
props['position.hash.map'].put(props['HashKey'], props['HashValue'])
有没有办法display/print整个hashmap或者数组加载后?
您在此处使用 HashMap 的设计选择可能是一个错误 - 您应该重新考虑该选择。
如果您希望打印出地图的内容以用于诊断目的,请在其上使用 toString() 方法
props['position.hash.map'].toString()
将打印出 https://docs.oracle.com/javase/8/docs/api/java/util/AbstractMap.html#toString-- 中描述的内容。您在问这个问题之前没有查看 JavaDoc 是另一个迹象,表明您还没有完全准备好在此代码中使用 HashMap,您应该寻找替代方案