i have HashMap and its have data, i connect to database by xmlrpc by jetty9 i am call this function by java client , by this code
Object params[] = new Object[]{stString};
HashMap v1;
v1 = (HashMap<String, Object[]>)server.execute("DBRamService.getRmsValues", params);
i need to print it in my java client , how can i make it ? this is my function that get data from datebase
HashMap<String, Object[]> result = new HashMap<String, Object[]>();
ArrayList<Double> vaArrL = new ArrayList<Double>();
try {
// i have connected to postgres DB and get data 
while (rs.next()){
          vaArrL.add(rs.getDouble("va"));
}
      int sz = vaArrL.size();             
      result.put("va", vaArrL.toArray(new Object[sz]));
} catch ( Exception e ) {
        System.out.println(e);
        e.printStackTrace();
    }
return result;  }
 
     
    