码迷,mamicode.com
首页 > 编程语言 > 详细

springboot文件上传 流的方式 后台计算上传进度

时间:2020-05-07 15:49:54      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:stat   gre   size   number   temp   cti   推送   inpu   sock   

//代码

public static void main(String[] args) throws Exception {
  String path = "f:/svn/t_dictionary.txt";
  File file = new File(path);//源文件

  Long fsize = file.length();//获取文件大小
  FileInputStream in = new FileInputStream(file);

  //目标文件
  FileOutputStream out = new FileOutputStream("f:/svn/temp/t_dictionary.txt");
  byte[] buffer = new byte[1024];
  int bz = buffer.length;
  int readNumber = 0;
  long progress = 0;//进度数值 12%显示的是取整 12
  int time = 0;//循环的次数
  while((readNumber = in.read(buffer)) != -1){
    time++;
    progress = time*bz*100/fsize;
    out.write(buffer);
    System.out.println(time+" ======> "+ progress);
  }


}

 说明:要做一个文件上传并且还带有进度条(websocket方式推送进度),涉及到后台计算进度问题,特此记录

springboot文件上传 流的方式 后台计算上传进度

标签:stat   gre   size   number   temp   cti   推送   inpu   sock   

原文地址:https://www.cnblogs.com/xuchao0506/p/12843043.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!