溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Java項(xiàng)目中使用 Servlet怎么實(shí)現(xiàn)一個(gè)文件分享功能

發(fā)布時(shí)間:2020-11-21 15:31:58 來(lái)源:億速云 閱讀:159 作者:Leah 欄目:編程語(yǔ)言

本篇文章為大家展示了Java項(xiàng)目中使用 Servlet怎么實(shí)現(xiàn)一個(gè)文件分享功能,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。

項(xiàng)目結(jié)構(gòu)

src
  com
    servletdemo
        DownloadServlet.java
        ShowServlet.java
        UploadServlet.java
        
WebContent
  jsp
    servlet
        download.html
        fileupload.jsp
        input.jsp
        
  WEB-INF
    lib
        commons-fileupload-1.3.1.jar
        commons-io-2.4.jar

1.簡(jiǎn)單實(shí)例

ShowServlet.java

package com.servletdemo;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * Servlet implementation class ShowServlet
 */
@WebServlet("/ShowServlet")
public class ShowServlet extends HttpServlet {
  private static final long serialVersionUID = 1L;
  PrintWriter pw=null;  
  /**
   * @see HttpServlet#HttpServlet()
   */
  public ShowServlet() {
    super();
    // TODO Auto-generated constructor stub
  }

  /**
   * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
   */
  protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    // TODO Auto-generated method stub
    this.doPost(request, response);
  }

  /**
   * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
   */
  protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    // TODO Auto-generated method stub
    request.setCharacterEncoding("gb2312");
    response.setContentType("text/html;charset=gb2312");
    pw=response.getWriter();
    String name=request.getParameter("username");
    String password=request.getParameter("password");
    pw.println("user name:" + name);
    pw.println("<br>");
    pw.println("user password:" + password);
  }

}

input.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
  pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>servlet demo</title>
</head>
<body>
<form action="<%=request.getContextPath()%>/ShowServlet"> 
    <table> 
      <tr> 
        <td>name</td> 
        <td><input type="text" name="username"></td> 
      </tr> 
      <tr> 
        <td>password</td> 
        <td><input type="text" name="password"></td> 
      </tr> 
      <tr> 
        <td><input type="submit" value="login"></td> 
        <td><input type="reset" value="cancel"></td> 
      </tr> 
    </table> 
  </form>
</body>
</html>

2.文件上傳實(shí)例

UploadServlet.java

package com.servletdemo;

import java.io.File; 
import java.io.FileOutputStream; 
import java.io.IOException; 
import java.io.InputStream; 
import java.io.OutputStream; 
import java.io.PrintWriter; 
import java.text.DateFormat; 
import java.util.Date; 
import java.util.List; 
import java.util.UUID; 

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.commons.fileupload.FileItem; 
import org.apache.commons.fileupload.FileUploadException; 
import org.apache.commons.fileupload.ProgressListener; 
import org.apache.commons.fileupload.disk.DiskFileItemFactory; 
import org.apache.commons.fileupload.servlet.ServletFileUpload;
/**
 * Servlet implementation class UploadServlet
 */
@WebServlet("/servlet/UploadServlet")
public class UploadServlet extends HttpServlet {
  private static final long serialVersionUID = 1L;
    
  /**
   * @see HttpServlet#HttpServlet()
   */
  public UploadServlet() {
    super();
    // TODO Auto-generated constructor stub
  }

  /**
   * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
   */
  protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    // TODO Auto-generated method stub
    //設(shè)置編碼 
    request.setCharacterEncoding("UTF-8"); 
    response.setContentType("text/html;charset=UTF-8"); 
    PrintWriter pw = response.getWriter(); 
    try { 
      //設(shè)置系統(tǒng)環(huán)境 
      DiskFileItemFactory factory = new DiskFileItemFactory(); 
      //文件存儲(chǔ)的路徑 
      String storePath = getServletContext().getRealPath("/WEB-INF/files"); 
      //判斷傳輸方式 form enctype=multipart/form-data 
      boolean isMultipart = ServletFileUpload.isMultipartContent(request); 
      if(!isMultipart) 
      { 
        pw.write("傳輸方式有錯(cuò)誤!"); 
        return; 
      } 
      ServletFileUpload upload = new ServletFileUpload(factory); 
      upload.setFileSizeMax(4*1024*1024);//設(shè)置單個(gè)文件大小不能超過(guò)4M 
      upload.setSizeMax(4*1024*1024);//設(shè)置總文件上傳大小不能超過(guò)6M 
      //監(jiān)聽(tīng)上傳進(jìn)度 
      upload.setProgressListener(new ProgressListener() { 
 
        //pBytesRead:當(dāng)前以讀取到的字節(jié)數(shù) 
        //pContentLength:文件的長(zhǎng)度 
        //pItems:第幾項(xiàng) 
        public void update(long pBytesRead, long pContentLength, 
            int pItems) { 
          System.out.println("已讀去文件字節(jié) :"+pBytesRead+" 文件總長(zhǎng)度:"+pContentLength+"  第"+pItems+"項(xiàng)"); 
           
        } 
      }); 
      //解析 
      List<FileItem> items = upload.parseRequest(request); 
      for(FileItem item: items) 
      { 
        if(item.isFormField())//普通字段,表單提交過(guò)來(lái)的 
        { 
          String name = item.getFieldName(); 
          String value = item.getString("UTF-8"); 
          System.out.println(name+"=="+value); 
        }else 
        { 
//         String mimeType = item.getContentType(); 獲取上傳文件類型 
//         if(mimeType.startsWith("image")){ 
          InputStream in =item.getInputStream(); 
          String fileName = item.getName();  
          if(fileName==null || "".equals(fileName.trim())) 
          { 
            continue; 
          } 
          fileName = fileName.substring(fileName.lastIndexOf("\\")+1); 
          fileName = UUID.randomUUID()+"_"+fileName; 
           
          //按日期來(lái)建文件夾 
          String newStorePath = makeStorePath(storePath); 
          String storeFile = newStorePath+"\\"+fileName; 
          OutputStream out = new FileOutputStream(storeFile); 
          byte[] b = new byte[1024]; 
          int len = -1; 
          while((len = in.read(b))!=-1) 
          { 
             out.write(b,0,len);     
          } 
          in.close(); 
          out.close(); 
          item.delete();//刪除臨時(shí)文件 
        } 
       } 
//     } 
    }catch(org.apache.commons.fileupload.FileUploadBase.FileSizeLimitExceededException e){  
       //單個(gè)文件超出異常 
      pw.write("單個(gè)文件不能超過(guò)4M"); 
    }catch(org.apache.commons.fileupload.FileUploadBase.SizeLimitExceededException e){ 
      //總文件超出異常 
      pw.write("總文件不能超過(guò)6M"); 
       
    }catch (FileUploadException e) { 
      e.printStackTrace(); 
    }
  }

  /**
   * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
   */
  protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    // TODO Auto-generated method stub
    doGet(request, response);
  }
  
  private String makeStorePath(String storePath) { 
    
    Date date = new Date(); 
    DateFormat df = DateFormat.getDateInstance(DateFormat.MEDIUM); 
    String s = df.format(date); 
    String path = storePath+"\\"+s; 
    File file = new File(path); 
    if(!file.exists()) 
    { 
      file.mkdirs();//創(chuàng)建多級(jí)目錄,mkdir只創(chuàng)建一級(jí)目錄 
    } 
    return path; 
      
  } 
  private String makeStorePath3(String storePath, String fileName) { 
    int hashCode = fileName.hashCode(); 
    int dir1 = hashCode & 0xf;// 0000~1111:整數(shù)0~15共16個(gè) 
    int dir2 = (hashCode & 0xf0) >> 4;// 0000~1111:整數(shù)0~15共16個(gè) 
   
    String path = storePath + "\\" + dir1 + "\\" + dir2; // WEB-INF/files/1/12 
    File file = new File(path); 
    if (!file.exists()) 
      file.mkdirs(); 
   
    return path; 
  } 

}

fileupload.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
  pageEncoding="ISO-8859-1"%>

<% 
String path = request.getContextPath(); 
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 
%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Upload File Demo</title>
</head>
<body>
<form action="${pageContext.request.contextPath}/servlet/UploadServlet" method="post" enctype="multipart/form-data"> 
  user name<input type="text" name="username"/> <br/> 
  <input type="file" name="f1"/><br/> 
  <input type="file" name="f2"/><br/> 
  <input type="submit" value="save"/> 
 </form>
</body>
</html>

3.文件下載實(shí)例

DownloadServlet.java

package com.servletdemo;

import java.io.FileInputStream; 
import java.io.FileNotFoundException; 
import java.io.FileOutputStream; 
import java.io.IOException; 
import java.io.OutputStream; 
import java.io.PrintWriter; 



import java.net.URLEncoder;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.ServletResponse; 

/**
 * Servlet implementation class DownloadServlet
 */
@WebServlet("/DownloadServlet")
public class DownloadServlet extends HttpServlet {
  private static final long serialVersionUID = 1L;
    
  /**
   * @see HttpServlet#HttpServlet()
   */
  public DownloadServlet() {
    super();
    // TODO Auto-generated constructor stub
  }

  /**
   * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
   */
  protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    // TODO Auto-generated method stub
    download1(response); 
  }

  /**
   * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
   */
  protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    // TODO Auto-generated method stub
    doGet(request, response);
  }
  
  public void download1(HttpServletResponse response) throws IOException{ 
    //獲取所要下載文件的路徑 
     String path = this.getServletContext().getRealPath("/files/web配置.xml"); 
     String realPath = path.substring(path.lastIndexOf("\\")+1); 
   
     //告訴瀏覽器是以下載的方法獲取到資源 
     //告訴瀏覽器以此種編碼來(lái)解析URLEncoder.encode(realPath, "utf-8")) 
    response.setHeader("content-disposition","attachment; filename="+URLEncoder.encode(realPath, "utf-8")); 
    //獲取到所下載的資源 
     FileInputStream fis = new FileInputStream(path); 
     int len = 0; 
      byte [] buf = new byte[1024]; 
      while((len=fis.read(buf))!=-1){ 
        response.getOutputStream().write(buf,0,len); 
      } 
   }

}

download.html

<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Download Demo</title>
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> 
<meta http-equiv="description" content="this is my page"> 
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<a href = "/JavabeanDemo/DownloadServlet">download</a>
</body>
</html>

上述內(nèi)容就是Java項(xiàng)目中使用 Servlet怎么實(shí)現(xiàn)一個(gè)文件分享功能,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI