如何在 Oracle Adf 中将货币格式设置为印度格式?
如何在 Oracle Adf 中将货币格式从美国格式设置为印度格式?
How to set the format of currency from US format to Indian format in Oracle Adf?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将会话的区域设置更改为印度区域设置。
当您将印度语言环境(示例使用德语、捷克语和英语,因此请相应调整)添加到 faces-config.xml 中支持的语言环境集中
时 ,这种情况会自动发生:浏览器(浏览器根据用户配置的语言发送 Accept-Language HTTP 标头)将会话的区域设置切换到该区域设置,这将适用于货币、数字和日期格式。它们不是显式配置它们,而是根据会话区域设置进行更改。
然后,您也可以将默认区域设置设置为印度语,此默认区域设置将用于浏览器根本不发送任何 Accept-Language 标头或浏览器语言和应用程序支持的区域设置没有共同点的会话元素。
有关 ADF 中本地化应用程序的更多详细信息,请参阅 ADF 开发指南< /a>
you can change the locale of the session to indian locale.
This happens automatically when you add ithe indian locale (Example uses german, czech and english, so adjust accordingly ) to your set of supported locales inside the faces-config.xml:
When the server detects any of the supported locales to be available in the browser (The Browser sends an Accept-Language HTTP header according to the languages configured by the user) it switches the locale of the session to that locale, this will the apply to currency, number and date formats. Instead of configuring them explicity, they change according to the session locale.
You can then set the default locale to indian too, this default locale will then be used for sessions where either the browser does not send any Accept-Language header at all or the languages of the browser and the supported locales of the app have no common elements.
For mor Details on Localizing App in ADF see ADF Dev Guide