Hey guys,
I tried as follows:
String[][] retHours = readResponseMessage(soapResponse); contextMap.put("currentAXTimes", retHours);
return contextMap;
String[][] returnArray = null; returnArray = new String [nodes.getLength()][2]; for (int i = 0; i < nodes.getLength(); i++) { returnArray[i][0] = nodes.item(i).getAttributes().getNamedItem("Label").getNodeValue(); returnArray[i][1] = nodes.item(i).getTextContent(); }
Example: retHours
["Billable"]["77,5]
["Invest"]["17,5]
In velocity Iam trying to print the values:
#foreach($axTimes in $currentAXTimes ) <li>$axTimes[0] / $axTimes[1]</li> #end
Jira shows me the following String:
[Ljava.lang.String;@65d25310[0] / [Ljava.lang.String;@65d25310[1]
[Ljava.lang.String;@4b31f659[0] / [Ljava.lang.String;@4b31f659[1]
At least it gets the size of the array correctly (2), but somehow it wont show any values
Maybe you guys could give me some hints. Unfortunatelyjava is new for me.
Thanks in advance - Alex
Hi @BetaConnect ,
it seems that you are passing a matrix but you are trying to access objects as an array. In order to read an element you should read elements as follow :
$axTimes[0][0] / $axTimes[0][1]
Hope this helps,
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.