我正在使用
Java6作为我的Web应用程序我正在尝试下面的代码来改变我的应用程序的laguage
public static void doChangeLanguage(String argLang) { SessionValidationInitiator.setLanguage(argLang); LOGGER.debug("Changing Language to ... " + argLang); if(argLang.equalsIgnoreCase("fr_ca")){ Locales.setThreadLocal(Locales.getLocale(Locale.FRENCH)); Executions.getCurrent().getSession().setAttribute(Attributes.PREFERRED_LOCALE,Locale.FRENCH); Labels.reset(); }else{ Locales.setThreadLocal(Locales.getLocale(Locale.US)); Executions.getCurrent().getSession().setAttribute(Attributes.PREFERRED_LOCALE,Locale.US); Labels.reset(); } Executions.sendRedirect(null); }
它工作正常,但当我试图改变印地语时,我没有看到任何印度语语言环境.
我们是否也可以从Java支持Hindi Locale,以便我的应用程序可以用于印地语.