返回byte/kb的数据大小对应的文本

写个工具类,代码如下:

import java.text.DecimalFormat;

public class TextFormater {
	/**
	 * 返回byte的数据大小对应的文本
	 * 
	 * @param size
	 * @return
	 */
	public static String getDataSize(long size) {
		DecimalFormat formater = new DecimalFormat("####.00");
		if (size < 1024) {
			return size + "bytes";
		} else if (size < 1024 * 1024) {
			float kbsize = size / 1024f;
			return formater.format(kbsize) + "KB";
		} else if (size < 1024 * 1024 * 1024) {
			float mbsize = size / 1024f / 1024f;
			return formater.format(mbsize) + "MB";
		} else if (size < 1024 * 1024 * 1024 * 1024) {
			float gbsize = size / 1024f / 1024f / 1024f;
			return formater.format(gbsize) + "GB";
		} else {
			return "size: error";
		}

	}

	/**
	 * 返回kb的数据大小对应的文本
	 * 
	 * @param size
	 * @return
	 */
	public static String getKBDataSize(long size) {

		return getDataSize(size * 1024);

	}

}


你可能感兴趣的:(java)