「Struts」getResources()でプロパティから文字列を取得する
サンプルコード
protected String getResValue(HttpServletRequest req, String key)
{
MessageResources res = getResources(req);
String value = res.getMessage(getLocale(req), key);
if (value != null)
return value;
return "";
}