Java
pan6015
这个作者很懒,什么都没留下…
展开
-
Java8 计算到1970年毫秒数的方法
最近项目中需要用到long类型的时间串,就查了查相关资料,整理了一下 上代码: public long getTimeLong(String dateStr){ // DateTimeFormatter strToDateFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd"); // TemporalAcces...原创 2018-11-22 14:36:12 · 4379 阅读 · 0 评论 -
java格式化文件大小
public String renderFileSize(String fileSize) { String[] arr = {"Bytes", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"}; float srcsize = Float.valueOf(fileS原创 2018-11-22 14:52:50 · 1857 阅读 · 0 评论 -
时间长度格式化为xx:xx:xx
时间长度格式化的方法,把时间长度转换为xx:xx:xx的格式。记录下来,以备不时之需。 public String secToTime(int time) { String timeStr = null; int hour = 0; int minute = 0; int second = 0; if (time <= 0) re...转载 2018-11-22 15:04:01 · 567 阅读 · 0 评论