does anyone have a java equivalent of this python example from section 4 of the xmlrpc manaul?
for t in res.keys():
print "===== Block " + t + ": ========"
for r in range( len(res[t]) ):
for c in range( len( res[t][r] )):
print res[t][r][c] ,
print "\t" ,
print