खोज…


संख्या स्वरूप

अलग-अलग देशों के अलग-अलग प्रारूप हैं और इस पर विचार करते हुए कि हम लोकेल ऑफ़ जावा का उपयोग करके अलग-अलग प्रारूप रख सकते हैं। लोकेल का उपयोग प्रारूपण में मदद कर सकता है

Locale locale = new Locale("en", "IN");
NumberFormat numberFormat = NumberFormat.getInstance(locale);

उपरोक्त प्रारूप का उपयोग करके आप विभिन्न कार्य कर सकते हैं

  1. प्रारूप संख्या

    numberFormat.format(10000000.99);

  1. प्रारूप मुद्रा

    NumberFormat currencyFormat = NumberFormat.getCurrencyInstance(locale); currencyFormat.format(10340.999);

  1. प्रारूप का प्रतिशत

    NumberFormat percentageFormat = NumberFormat.getPercentInstance(locale); percentageFormat.format(10929.999);

  2. अंकों की नियंत्रण संख्या

numberFormat.setMinimumIntegerDigits(int digits)
numberFormat.setMaximumIntegerDigits(int digits)
numberFormat.setMinimumFractionDigits(int digits)
numberFormat.setMaximumFractionDigits(int digits)


Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow