How to get a value from a util.map field
Posted on January 31, 2018 at 5:11am
Hello,
I have a parameter ${Disciplina_map} of type java.util.map, this print a value {Geral=Geral}, i need get only the value "Geral" and print'it.
How i can get this values?
Thanks!
Joined: May 29 2017 - 9:42am
Last seen: 4 years 3 months ago
Posted on January 31, 2018 at 1:57pm
$P{Disciplina_map}.get("Geral")
Consider using check $P{Disciplina_map}.containsKey("Geral") before, in case it isn't
Joined: Jan 2 2018 - 10:13am
Last seen: 2 years 10 months ago
Answer was here :)