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
573 views
in Technique[技术] by (71.8m points)

jsp - Struts select tag localization implementation

Following is the Struts code for the <s:select> tag in my JSP file.

<s:select name="choice" list="{'Add to My List','Remove from My List','Activate','Deactivate','Print'}"  theme="xhtml" cssClass="text" required="false"/>

I need to localize the list elements to French as shown below.

<s:select name="choice" list="{'Ajouter à Ma liste','Enlever de ma liste','Activer','Désactiver','Imprimer'}"  theme="xhtml" cssClass="text" required="false"/>

How can I achieve this using the Internationalization and localization properties files. Regards

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

At your properties file place that equations:

addTolist = Ajouter à Ma liste
removeFromList = Enlever de ma liste
...

At Java side you can reach them with:

listValue=getText("addTolist");
...

So, at jsp side try that:

<s:select ... listValue="%{getText(addTolist)}, ..." ... /> // You should fill the '...' places

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

...