JavaWeb文件上傳流程

JavaWeb文件上傳

本文我們學習JavaWeb中最重要的技術之一,文件上傳,該案例我會用一個小型的用戶管理系統實現,一步步帶入,內容通俗易懂,下面我們步入正題!

做一個簡單的用戶管理系統

功能如下

用戶註冊,參數有用戶名,用戶名密碼,用戶頭像,

用戶登錄,登錄成功後跳轉至主頁顯示用戶頭像和名稱,支持註銷賬號,註銷賬號後,頁面跳轉至登錄頁

技術棧:後端采用JavaWebMySQL5.7Druid連接池、前端采用bootstrap框架結合jsp

先上效果

完整操作項目演示:

包含:用戶註冊,用戶登錄,用戶登錄後顯示用戶信息,即頭像,賬號名,最右側顯示註銷,點擊註銷後跳轉至登錄頁

項目結構Java源碼

前端頁面jsp

數據表準備

t_user_info

CREATE TABLE `t_user_info` (
`noid` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`head_portrait_path` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`noid`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci

Jar文件準備

項目所需jar包如下

jar文件放在WEB-INF/lib文件夾下,主要是為瞭安全。

文件上傳需要的jar包:

jar文件我會同步資源,小夥伴們不用擔心哦~

項目結構簡介

本項目采用三層架構實現,即:service層、dao層、servlet層

  • servlet層:

由於之前的servlet層類增刪改查的類太過於多,導致代碼冗餘,所以在jsp頁面發送請求時,采用模塊化的方式進行訪問,例如:

  • http://localhost/Blog/user/addUser 訪問user模塊的addUser
  • http://localhost/Blog/user/getUserList 訪問user模塊的getUserList
  • http://localhost/Blog/dept/addDept 訪問dept的addDept
  • http://localhost/Blog/dept/getDeptList 訪問dept的getDeptList

這樣一個對應的類解決該類的所有對數據庫的增刪改查操作,提高瞭程序的可維護性,減少代碼的冗餘,提高瞭程序的健壯性。
抽取出公共父類:BaseServletBaseServlet類核心代碼

public class BaseServlet extends HttpServlet{
@Override
protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
//1.獲取瀏覽器請求的資源
String uri = req.getRequestURI();
//2.獲取請求的方法名,最後斜線後面的內容
String methodName = uri.substring(uri.lastIndexOf("/")+1);
try {
//3.根據方法名獲取方法,通過反射獲取
Method method = this.getClass().getMethod(methodName, HttpServletRequest.class, HttpServletResponse.class);
//4.調用方法
method.invoke(this, req, resp);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
  • dao層

dao層抽取出公共數據庫連接類,BaseDao,基於db.properties配置文件連接本地數據庫

db.properties配置文件:

driverClassName=com.mysql.jdbc.Driver
url=jdbc:mysql://127.0.0.1/db_blog?useSSL=true
username=root
password=111111

BaseDao核心代碼

public class BaseDao {
//采用單例模式實現,防止數據庫連接超時
private static DataSource ds = null;
public QueryRunner initQueryRunner() throws Exception {
if (ds == null) {
String dbFile = this.getClass().getClassLoader().getResource("/").getFile();
dbFile = dbFile.substring(1) + "db.properties";
FileReader fr = new FileReader(dbFile);
Properties pro = new Properties();
pro.load(fr);
ds = DruidDataSourceFactory.createDataSource(pro);
}
QueryRunner qur = new QueryRunner(ds);
return qur;
}
}

Userservlet核心代碼

@WebServlet("/user/*")
public class UserServlet extends BaseServlet{

//業務層類,用於調用業務層方法
UserService userService = new UserServiceImpl();

/**
* 註冊用戶
* @param req
* @param resp
*/
public void register(HttpServletRequest req, HttpServletResponse resp) {
//獲取數據
DiskFileItemFactory factory = new DiskFileItemFactory();
ServletFileUpload fileUpload = new ServletFileUpload(factory);
try {
List<FileItem> fileItemList = fileUpload.parseRequest(req);
//獲取當前項目的路徑
String classesPath = this.getClass().getResource("/").getPath();

File f1 = new File(classesPath);
//項目路徑
String projectPath = f1.getParentFile().getParentFile().getParentFile().getAbsolutePath();

//最後上傳的路徑
String uploadPath = projectPath + "\\ROOT\\upload\\";

File f2 = new File(uploadPath);
if (!f2.exists()) {
f2.mkdirs();
}
//存入數據庫的路徑
String headPortraitPath = "";
for (FileItem fileItem : fileItemList) {
if (!fileItem.isFormField()) {
//是文件域
String fileName = fileItem.getName();
//獲取原來文件的後綴
String suffix = fileName.substring(fileName.lastIndexOf("."));
//生成新的文件名,為防止重復,采用隨機數
String destFileName = UUID.randomUUID().toString().replace("-", "");

//存入數據庫的路徑拼接完畢,例如格式:隨機文件名.txt
headPortraitPath = destFileName + suffix;
//寫入硬盤的路徑
uploadPath += headPortraitPath;
//獲取輸入流
InputStream is = fileItem.getInputStream();
//輸出流
FileOutputStream fos = new FileOutputStream(uploadPath);
//將上傳的文件寫入指定路徑
try {
byte[] buf = new byte[10240];
while (true) {
int realLen = is.read(buf, 0, buf.length);
if (realLen < 0) {
break;
}
fos.write(buf, 0, realLen);
}
} finally {
if (fos != null)
fos.close();
if (is != null)
is.close();
}
} else {
//不是文件域,是普通控件
//獲取輸入框的名稱
String fieldName = fileItem.getFieldName();
//獲取輸入框中的值
String fieldVal = fileItem.getString("utf-8");
//加入請求域中
req.setAttribute(fieldName, fieldVal);
}
}
String username = (String) req.getAttribute("username");
String password = (String) req.getAttribute("password");
//驗證參數是否合法,不為空
boolean flag = userService.exam(username, password);
if (flag) {
//將數據存入數據庫
User user = new User();
user.setUsername(username);
user.setPassword(password);
user.setHead_portrait_path(headPortraitPath);
if (userService.save(user)) {
resp.sendRedirect(req.getContextPath()+"/login.jsp");
}
} else {
resp.sendRedirect(req.getContextPath()+"/register.jsp");
}
} catch (Exception e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}

/**
* 用戶登錄
* @param req
* @param resp
*/
public void login(HttpServletRequest req, HttpServletResponse resp) {
//獲取數據
String username = req.getParameter("username");
String password = req.getParameter("password");
//驗證是否存在該用戶
User user = new User();
try {
if (userService.exam(username, password)) {
user.setUsername(username);
user.setPassword(password);
user = userService.getByUser(user);
if (user.getHead_portrait_path() != null) {
HttpSession s1 = req.getSession();
s1.setAttribute("user", user);
resp.sendRedirect(req.getContextPath()+"/index.jsp");
} else {
resp.sendRedirect(req.getContextPath()+"/login.jsp");
}
} else {
resp.sendRedirect(req.getContextPath()+"/login.jsp");
}
} catch(Exception e) {
e.printStackTrace();
}
}
}

到此這篇關於JavaWeb文件上傳流程的文章就介紹到這瞭,更多相關JavaWeb文件上傳內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: