如何在 Oracle Adf 中将货币格式设置为印度格式?

发布于 2024-11-02 08:33:10 字数 41 浏览 2 评论 0原文

如何在 Oracle Adf 中将货币格式从美国格式设置为印度格式?

How to set the format of currency from US format to Indian format in Oracle Adf?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情域 2024-11-09 08:33:10

您可以将会话的区域设置更改为印度区域设置。

当您将印度语言环境(示例使用德语、捷克语和英语,因此请相应调整)添加到 faces-config.xml 中支持的语言环境集中

  <application>
    <default-render-kit-id>oracle.adf.core</default-render-kit-id>
    <message-bundle>de.xxx.resources</message-bundle>
    <locale-config>
        <default-locale>de</default-locale>
        <supported-locale>de</supported-locale>
        <supported-locale>en</supported-locale>
        <supported-locale>cs</supported-locale>
    </locale-config>
</application>

时 ,这种情况会自动发生:浏览器(浏览器根据用户配置的语言发送 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:

  <application>
    <default-render-kit-id>oracle.adf.core</default-render-kit-id>
    <message-bundle>de.xxx.resources</message-bundle>
    <locale-config>
        <default-locale>de</default-locale>
        <supported-locale>de</supported-locale>
        <supported-locale>en</supported-locale>
        <supported-locale>cs</supported-locale>
    </locale-config>
</application>

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文