admin 管理员组

文章数量: 1086019


2024年2月25日发(作者:2021年数据库系统工程师考试时间)

public static String calculateFileSize(long size) { DecimalFormat df = new DecimalFormat("0.00"); if (size < 1024) { return size+"B"; } else if (size < 1024 * 1024) { return ((double)size / 1024)+"KB"; } else if (size < 1024 * 1024 * 1024) { return ((double)size / (1024 * 1024))+"MB"; } else { return ((double)size / (1024 * 1024 * 1024))+"GB"; } }

}上传就完成了


本文标签: 数据库系统 考试 时间 工程师 完成