Java Number Format formatNumber(long number)

Here you can find the source of formatNumber(long number)

Description

format Number

License

Apache License

Declaration

public static String formatNumber(long number) 

Method Source Code

//package com.java2s;
/**// www.ja va2 s.c  o  m
 * Copyright 2010 The Apache Software Foundation
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {
    public static String formatNumber(long number) {
        if (number >= 1000000000) {
            return ((number / 1000000000) + "B");
        } else if (number >= 1000000) {
            return ((number / 1000000) + "M");
        } else if (number >= 1000) {
            return ((number / 1000) + "K");
        } else {
            return (number + "");
        }
    }
}

Related

  1. formatNumber(int theNumber, int theNumberOfDigits)
  2. formatNumber(int value, int width, char c)
  3. formatNumber(Integer i, int bisectNumber)
  4. FormatNumber(Integer pNumber, int tolLen)
  5. formatNumber(long i, int digits)
  6. formatNumber(long number, int digits)
  7. formatNumber(long pNum, int pLen)
  8. formatNumber(long value)
  9. formatNumber(Number number)