示例#1
0
 public String getDownloadSpeedString() {
     return SizeFormatter.formatBytes(downloadSpeed) + "/s";
 }
示例#2
0
 /**
  * @param longValue
  * @return
  */
 protected String longToText(final long longValue) {
   return SizeFormatter.formatBytes(longValue);
 }
示例#3
0
 private String format(long totalBytes2) {
     if (totalBytes2 < 0) { return _GUI._.lit_unknown(); }
     return SizeFormatter.formatBytes(totalBytes2);
 }