中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何實現fileUpload文件上傳帶進度條效果

發布時間:2021-06-29 11:03:59 來源:億速云 閱讀:173 作者:小新 欄目:web開發

這篇文章將為大家詳細講解有關如何實現fileUpload文件上傳帶進度條效果,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

效果圖:

如何實現fileUpload文件上傳帶進度條效果

服務器端servlet:

public class UploadServlet extends HttpServlet {
  @Override
  protected void doGet(HttpServletRequest req, HttpServletResponse resp)
      throws ServletException, IOException {
    //取出監聽器MyProgress在session中保存的進度信息
    String progress=(String) req.getSession().getAttribute("progress");
    //響應
    resp.getWriter().print(progress);
    //清除session中保存的數據
//    req.getSession().removeAttribute("progress");
  }
  @Override
  protected void doPost(HttpServletRequest req, HttpServletResponse resp)
      throws ServletException, IOException {
    req.setCharacterEncoding("UTF-8");
    DiskFileItemFactory factory=new DiskFileItemFactory();
    ServletFileUpload upload=new ServletFileUpload(factory);
    upload.setProgressListener(new MyProgressListener(req));
    try {
      List<FileItem> list = upload.parseRequest(req);
      for (FileItem fileItem : list) {
        if (fileItem.isFormField()) {//普通表單
        }else{//上傳文件
          String path=req.getRealPath("uploads");
          String fileName=fileItem.getName();
          File file=new File(path, fileName);
          fileItem.write(file);
          System.out.println("成功上傳文件:"+fileName);
        }
      }
    } catch (Exception e) {
      System.out.println("文件上傳發生錯誤!");
      e.printStackTrace();
    }
  }
}

服務器端監聽器:

public class MyProgressListener implements ProgressListener {
  private HttpSession session;
  public MyProgressListener(HttpServletRequest request){
    session = request.getSession();
  }
  @Override
  public void update(long pBytesRead, long pContentLength, int pItems) {
    //將數據進行格式化
    //已讀取數據由字節轉換為M
    double readM=pBytesRead/1024.0/1024.0;
    //已讀取數據由字節轉換為M
    double totalM=pContentLength/1024.0/1024.0;
    //已讀取百分百
    double percent=readM/totalM;
    
    //格式化數據
    //已讀取
    String readf=dataFormat(pBytesRead);
    //總大小
    String totalf=dataFormat(pContentLength);
    //進度百分百
    NumberFormat format=NumberFormat.getPercentInstance();
    String progress=format.format(percent);
    
    //將信息存入session
    session.setAttribute("progress", progress);
    
    //打印消息到控制臺
    System.out.println("pBytesRead===>"+pBytesRead);
    System.out.println("pContentLength==>"+pContentLength);
    System.out.println("pItems===>"+pItems);
    System.out.println("readf--->"+readf);
    System.out.println("totalf--->"+totalf);
    System.out.println("progress--->"+progress);
  }
  /**
   * 格式化讀取數據的顯示
   * @param data要格式化的數據 單位byte
   * @return 格式化后的數據,如果小于1M顯示單位為KB,如果大于1M顯示單位為M
   */
  public String dataFormat(double data){
    String formdata="";
    if (data>=1024*1024) {//大于等于1M
      formdata=Double.toString(data/1024/1024)+"M";
    }else if(data>=1024){//大于等于1KB
      formdata=Double.toString(data/1024)+"KB";
    }else{//小于1KB
      formdata=Double.toString(data)+"byte";
    }
    return formdata.substring(0, formdata.indexOf(".")+2);
  }

}

客戶端:

<html>
 <head>
  <base href="<%=basePath%>" rel="external nofollow" >
  
  <title>帶進度條的文件上傳效果</title>
  <meta http-equiv="pragma" content="no-cache">
  <meta http-equiv="cache-control" content="no-cache">
  <meta http-equiv="expires" content="0">  
  <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
  <meta http-equiv="description" content="This is my page">
  <style type="text/css">
    #progressBar{width: 300px;height: 20px;border: 1px #EEE solid;}
    #progress{width: 0%;height: 20px;background-color: lime;}
  </style>
  <script type="text/javascript" src="js/jquery-1.4.2.js"></script>
  <script type="text/javascript">
    function upload(){
      $("#f1").submit();
      var pro=null;
      pro=setInterval(function(){
        $.get("UploadServlet","",function(data){
          if(data=='100%'){
            clearInterval(pro);
            $("#proInfo").text("上傳進度:100%");
             //更新進度條
            $("#progress").width("100%");
          }else{//正在上傳
            //更新進度信息
            $("#proInfo").text("上傳進度:"+data);
            //更新進度條
            $("#progress").width(data);
          }
        });
      },200);
    }
    
  </script>
 </head>
 
 <body>
   <iframe name="aa" ></iframe>
  <h3>帶進度條的文件上傳效果</h3>
  <form target="aa" id="f1" action="UploadServlet" method="post" enctype="multipart/form-data">
    文件:<input name="file" type="file">
    <input type="button" value="上傳" onclick="upload();">
    <div id="progressBar">
      <div id="progress"></div>
    </div>
    <span id="proInfo">上傳進度:0%</span>
  </form>
 </body>
</html>

關于“如何實現fileUpload文件上傳帶進度條效果”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宣化县| 永安市| 抚顺市| 应城市| 临桂县| 邵武市| 三江| 通江县| 普陀区| 子长县| 连云港市| 中宁县| 镇赉县| 皋兰县| 周口市| 泸西县| 阿勒泰市| 洪湖市| 常德市| 泸水县| 雷山县| 麻阳| 独山县| 乡宁县| 娱乐| 永善县| 广元市| 武鸣县| 靖宇县| 普洱| 卢氏县| 灯塔市| 普安县| 泰安市| 怀宁县| 文水县| 长沙县| 五大连池市| 上蔡县| 称多县| 云霄县|