Converts the double value to locale-independent string representation : Locale « I18N « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » I18N » LocaleScreenshots 
Converts the double value to locale-independent string representation
 
/*******************************************************************************
 * Copyright (c) 2004 Actuate Corporation.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *  Actuate Corporation  - initial API and implementation
 *******************************************************************************/

/**
 * Collection of string utilities.
 
 */

public class StringUtil
{

  /**
   * Converts the double value to locale-independent string representation.
   * This method works like <code>Double.toString( double )</code>, and can
   * also handle very large number like 1.234567890E16 to "12345678900000000".
   
   @param d
   *            the double value to convert
   @param fNumber
   *            the positive maximum fractional number
   @return the locale-independent string representation.
   */

  public static String doubleToStringdouble d, int fNumber )
  {

    if fNumber < )
      fNumber = 0;

    String value = Double.toString);
    int ePos = value.indexOf'E' );
    int dotPos = value.indexOf'.' );

    // Convert the double like "1234567890000000.56789" to string, which
    // will be converted to
    // "1.23456789000E15" by Double.toString().

    if ePos != -)
    {
      // Get the exponent of this double

      String e = value.substringePos + );
      int exp = Integer.parseInt);

      // Move the dot position according to the exponent

      StringBuffer sb = new StringBuffervalue.substring0, dotPos ) );
      if ePos - dotPos - > exp )
      {
        // "1.23456789000E4"

        sb.appendvalue.substringdotPos + 1, dotPos + + exp ) );
        sb.append'.' );
        sb.appendvalue.substringdotPos + + exp, ePos ) );

        // "12345.6789000"
      }
      else
      {
        // "1.23400E8"

        sb.appendvalue.substringdotPos + 1, ePos ) );
        for int i = 0; i < exp - ePos - dotPos - ); i++ )
          sb.append'0' );

        // "123400000"
      }

      // "1234567890000000" will be the final one

      value = sb.toString( );
    }

    // Limit the fractional number to maximum fractional number

    int pos = value.indexOf'.' );
    if pos != -)
    {
      if value.length( ) - pos - > fNumber )
        value = value.substring0, pos + fNumber + );

      // Remove the ending '0'.

      int i = 0;
      for ; i < fNumber; i++ )
      {
        if value.charAtvalue.length( ) - i - != '0' )
          break;
      }
      value = value.substring0, value.length( ) - i );

      // Remove the last dot

      if value.charAtvalue.length( ) == '.' )
        value = value.substring0, value.length( ) );
    }

    return value;
  }

}

   
  
Related examples in the same category
1. List Locales from Locale.getAvailableLocales()List Locales from Locale.getAvailableLocales()
2. List all Locale from SimpleDateFormatList all Locale from SimpleDateFormat
3. Locale Constant
4. Country Language CodesCountry Language Codes
5. Get Days Of The Week for different localeGet Days Of The Week for different locale
6. Get Display Country for default localeGet Display Country for default locale
7. Get ISO3 Language for default localeGet ISO3 Language for default locale
8. Get Display Name for default localeGet Display Name for default locale
9. Get Display Variant for default localeGet Display Variant for default locale
10. Get the 2-letter country code; may be equal to ""
11. List Locale OrientationList Locale Orientation
12. Get localized name suitable for display to the user
13. Setting the Default Locale on the command line
14. Set language and country code on the command line
15. Change the default locale is to call Locale.setDefault():
16. Set the default locale to pre-defined locale
17. Set the default locale to custom locale
18. format date for a Locale
19. Get a list of country names
20. Set only language code on the command line
21. Set a default Locale
22. Disable localization
23. Set of convenience routines for internationalized code
24. Print the default locale
25. Change the default locale
26. iso639-2-language-code.csv
27. iso3166-country-codes.csv
28. Converts a String to a Locale
29. Calculate the postfix to append to a filename to load the correct single filename for that Locale.
30. Calculate the postfixes along the search path from the base bundle to the bundle specified by baseName and locale.
31. Concat postfix to the name. Take care of existing filename extension.
32. Convert a string based locale into a Locale Object
33. Obtains an unmodifiable set of installed locales.
34. Obtains the list of languages supported for a given country.
35. Obtains the list of locales to search through when performing a locale search.
36. Parse the given localeString into a java.util.Locale
37. Returns the parent locale of a given locale.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.