Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
691 views
in Technique[技术] by (71.8m points)

jsp - JSTL - how to get a value of value?

I have this in my jsp page : ${category.name_ENG} which has "Car" as value

but i have the local language in an another varialbes : ${locale}. So in my jsp i want to display the car value depending on the locale variable.

I tried those :

${category.name_${locale}}
${category['name_${locale}']}
${category['name_{locale}']}

but none of them worked? any help?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Use JSTL <c:set> to concatenate a string in EL and then use brace notation [] to access properties with a dynamic key.

<c:set var="name" value="name_${locale}" />
${category[name]}

By the way, if the sole functional requirement is internationalization/localization, then there are way much better ways than fiddling like this: How to internationalize a Java web application?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

57.0k users

...