首頁 > 軟體

javaweb實現檔案上傳小功能

2022-06-22 14:01:28

本文範例為大家分享了javaweb實現檔案上傳的具體程式碼,供大家參考,具體內容如下

1.建立檔案上傳頁面

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>檔案上傳頁面</title>
</head>
<body>
    <form action="${pageContext.request.contextPath}/upload" enctype="multipart/form-data" method="post">
        檔案:<input type="file" name="file1"/><br>
        <input type="submit" value="提交"/>
    </form>
</body>
</html>

2.檔案上傳Servlet

package com.whoami.servlet;
import com.whoami.utils.UploadUtils;
import javax.servlet.ServletException;
import javax.servlet.ServletInputStream;
import javax.servlet.annotation.MultipartConfig;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.Part;
import java.io.File;
import java.io.IOException;

@WebServlet(name = "UploadController",value = "/upload")
@MultipartConfig(maxFileSize = 1024*1024*100,maxRequestSize = 1024*1024*200)
public class UploadController extends HttpServlet {
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        //實現檔案上傳

        // 1.設定亂碼
        request.setCharacterEncoding("UTF-8");
        response.setContentType("text/html;charset=UTF-8");

        // 2.獲取請求的資料
        Part part = request.getPart("file1");  //獲取檔案提交的資料

        // 3.獲取儲存檔案的路徑 真實路徑
        String uploadPath = request.getServletContext().getRealPath("/WEB-INF/upload");
        File file = new File(uploadPath);
        if(!file.exists()){
            file.mkdir(); //新建upload檔案
        }

        // 4.檔案上傳(儲存)
        //生成唯一檔名 防止檔案覆蓋
        String oldName = part.getSubmittedFileName();
        String newName = UploadUtils.newFileName(oldName);
        part.write(uploadPath+"\"+newName);

        // 5. 響應使用者端 上傳成功!

        response.getWriter().println(part.getSubmittedFileName()+"上傳成功!!");
    }

    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        doPost(request,response);
    }
}

3.生成唯一的檔名

package com.whoami.utils;
import java.util.UUID;
public class UploadUtils {
    public static String newFileName(String filename){
        return UUID.randomUUID().toString().replace("-","")+"_"+filename;
    }
}
//UUID.randomUUID().toString()會
//生成隨意ID(像這樣的6c0766ef-de8d-415a-83bd-fbc3ebd7a306)
//replace("-","")是用空白替換-

4.上傳結果

我把檔案存到了專案的WEB-INF/upload下面

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com