This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Struts and the fly likes getting value from hashmap in JSP using struts tag Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "getting value from hashmap in JSP using struts tag" Watch "getting value from hashmap in JSP using struts tag" New topic
Author

getting value from hashmap in JSP using struts tag

Hd Desai
Ranch Hand

Joined: Aug 04, 2003
Posts: 65
Hi,

I have a hashmap which has object in its value, I want to display value for the key passed in JSP.

E.g HashMap is hm and it has object obj which is like

class Obj{
private string id;
private String name;

getter setter for these two.....
}
hm.put ("1", obj)
hm.put("2",obj)

Now in JSP I want to display name for the object with key 1 and key 2.

When I try like this <html:text property="hm.1" /> it gives object, but I want to display name in object with key 1.....

Please suggest solution for this...

Thanks in advance.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: getting value from hashmap in JSP using struts tag
 
Similar Threads
HashMap - Get value by passing key
Displaying values in JSP using Struts Tag
iterating over a HashMap containing ArrayList as value
why am i getting a null value on fetching from map
string[] modification