How can i print all the values from the following hashmap
ServletContext appScope = request.getServletContext();
        Map<String, List<String>> onLine = (HashMap<String, List<String>>)appScope.getAttribute("User");
        if(onLine != null) {
            out.print(onLine.get("1"));
        }
 
     
     
     
     
     
    