简体   繁体   中英

Access a variable from a jsp file

I have created two jsp pages. I passed a list from jsp page and displayed the contents of the list in the second page using this: ${user.rate},${user.location}etc..

Now, I want to store one of these elements in a local variable for performing some arithmetic operations. I don't know how to save the variables locally and use it.

Kindly help me.

I found the answer. I used c tags to store my values.

<c: set var=name_of_variable value=${user.location} /> And I can access the variable using the 'name_of_variable'.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM