org.apache.wicket.util.lang.Bytes.unitString()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(72)

本文整理了Java中org.apache.wicket.util.lang.Bytes.unitString()方法的一些代码示例,展示了Bytes.unitString()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Bytes.unitString()方法的具体详情如下:
包路径:org.apache.wicket.util.lang.Bytes
类名称:Bytes
方法名:unitString

Bytes.unitString介绍

[英]Convert value to formatted floating point number and units.
[中]将值转换为格式化的浮点数和单位。

代码示例

代码示例来源:origin: org.apache.wicket/wicket-util

/**
 * Converts this byte count to a string using the given locale.
 * 
 * @param locale
 *            Locale to use for conversion
 * @return The string for this byte count
 */
public String toString(final Locale locale)
{
  if (terabytes() >= 1.0)
  {
    return unitString(terabytes(), "TB", locale);
  }
  if (gigabytes() >= 1.0)
  {
    return unitString(gigabytes(), "GB", locale);
  }
  if (megabytes() >= 1.0)
  {
    return unitString(megabytes(), "MB", locale);
  }
  if (kilobytes() >= 1.0)
  {
    return unitString(kilobytes(), "KB", locale);
  }
  return Long.toString(value) + " bytes";
}

代码示例来源:origin: org.apache.wicket/com.springsource.org.apache.wicket

return unitString(terabytes(), "T", locale);
return unitString(gigabytes(), "G", locale);
return unitString(megabytes(), "M", locale);
return unitString(kilobytes(), "K", locale);

代码示例来源:origin: org.ops4j.pax.wicket/pax-wicket-service

return unitString(terabytes(), "T", locale);
return unitString(gigabytes(), "G", locale);
return unitString(megabytes(), "M", locale);
return unitString(kilobytes(), "K", locale);

相关文章