国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁技術(shù)文章
文章詳情頁

JSP+Servlet實現(xiàn)文件上傳到服務(wù)器功能

瀏覽:402日期:2022-06-07 14:08:30

本文實例為大家分享了JSP+Servlet實現(xiàn)文件上傳到服務(wù)器功能的具體代碼,供大家參考,具體內(nèi)容如下

項目目錄結(jié)構(gòu)大致如下:

正如我在上圖紅線畫的三個東西:Dao、service、servlet 這三層是主要的結(jié)構(gòu),類似 MVC 架構(gòu),Dao是模型實體類(邏輯層),service是服務(wù)層,servlet是視圖層,三者協(xié)作共同完成項目。

這里的User是由user表來定義的一個類,再封裝增刪改查等操作,實現(xiàn)從數(shù)據(jù)庫查詢與插入,修改與刪除等操作,并實現(xiàn)了分頁操作,也實現(xiàn)了將圖片放到服務(wù)器上運行的效果。

Dao層:主要實現(xiàn)了User類的定義,接口IUserDao的定義與實現(xiàn)(UserDaoImpl);

service層:直接定義一個接口類IUserService,與IUserDao相似,再實現(xiàn)其接口類UserServiceImpl,直接實例化UserDaoImpl再調(diào)用其方法來實現(xiàn)自己的方法,重用了代碼。詳見代碼吧;

servlet層:起初是將表User 的每個操作方法都定義成一個servlet 去實現(xiàn),雖然簡單,但是太多了,不好管理,于是利用 基類BaseServlet 實現(xiàn)了“反射機制”,通過獲取的 action 參數(shù)自己智能地調(diào)用對應(yīng)的方法,而UserServlet則具體實現(xiàn)自己的方法,以供調(diào)用,方便許多,詳見之前的博文或下述代碼。

將文件上傳到 tomcat 服務(wù)器的編譯后運行的過程的某個文件關(guān)鍵要在每次編譯后手動為其創(chuàng)建該文件夾來存放相應(yīng)的上傳文件,否則會導致每次重啟 tomcat 服務(wù)器后該編譯后的工程覆蓋了原先的,導致上傳文件存放的文件夾不存在,導致代碼找不到該文件夾而報錯,即上傳不成功。如下圖所示:

主要是考慮圖片路徑的問題,手工設(shè)置路徑肯定不能保證不重復,所以取到上傳圖片的后綴名后利用隨機生成的隨機數(shù)作為圖片名,這樣就不會重復名字了:

String extendedName = picturePath.substring(picturePath.lastIndexOf("."),// 截取從最后一個"."到字符串結(jié)束的子串。 picturePath.length()); // 把文件名稱重命名為全球唯一的文件名 String uniqueName = UUID.randomUUID().toString(); saveFileName = uniqueName + extendedName;// 拼接路徑名

增加用戶時代碼如下:

 // 增 public void add(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { System.out.println("add方法被調(diào)用"); // 獲取數(shù)據(jù) int id = 0; String username = null; String password = null; String sex = null; Date birthday = null; String address = null; String saveFileName = null; String picturePath = null; // 得到表單是否以enctype="multipart/form-data"方式提交 boolean isMulti = ServletFileUpload.isMultipartContent(request); if (isMulti) { // 通過FileItemFactory得到文件上傳的對象 FileItemFactory fif = new DiskFileItemFactory(); ServletFileUpload upload = new ServletFileUpload(fif);  try { List<FileItem> items = upload.parseRequest(request); for (FileItem item : items) { // 判斷是否是普通表單控件,或者是文件上傳表單控件 boolean isForm = item.isFormField(); if (isForm) {// 是普通表單控件 String name = item.getFieldName(); if ("id".equals(name)) { id = Integer.parseInt(item.getString("utf-8")); System.out.println(id); } if ("sex".equals(name)) { sex = item.getString("utf-8"); System.out.println(sex); } if ("username".equals(name)) { username = item.getString("utf-8"); System.out.println(username); } if ("password".equals(name)) { password = item.getString("utf-8"); System.out.println(password); } if ("birthday".equals(name)) { String birthdayStr = item.getString("utf-8"); SimpleDateFormat sdf = new SimpleDateFormat(  "yyyy-MM-dd"); try { birthday = sdf.parse(birthdayStr); } catch (ParseException e) { e.printStackTrace(); } System.out.println(birthday); } if ("address".equals(name)) { address = item.getString("utf-8"); System.out.println(address); } if ("picturePath".equals(name)) { picturePath = item.getString("utf-8"); System.out.println(picturePath); } } else {// 是文件上傳表單控件 // 得到文件名 xxx.jpg String sourceFileName = item.getName(); // 得到文件名的擴展名:.jpg String extendedName = sourceFileName.substring( sourceFileName.lastIndexOf("."), sourceFileName.length()); // 把文件名稱重命名為全球唯一的文件名 String uniqueName = UUID.randomUUID().toString(); saveFileName = uniqueName + extendedName; // 得到上傳到服務(wù)器上的文件路徑 // C:\\apache-tomcat-7.0.47\\webapps\\taobaoServlet4\\upload\\xx.jpg String uploadFilePath = request.getSession() .getServletContext().getRealPath("upload/"); File saveFile = new File(uploadFilePath, saveFileName); // 把保存的文件寫出到服務(wù)器硬盤上 try { item.write(saveFile); } catch (Exception e) { e.printStackTrace(); } } } } catch (NumberFormatException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (FileUploadException e) { // TODO Auto-generated catch block e.printStackTrace(); } } // 2、封裝數(shù)據(jù) User user = new User(id, username, password, sex, birthday, address, saveFileName); // 3、調(diào)用邏輯層API IUserService iUserService = new UserServiceImpl(); // 4、控制跳轉(zhuǎn) HttpSession session = request.getSession(); if (iUserService.save(user) > 0) { System.out.println("添加新用戶成功!"); List<User> users = new ArrayList<User>(); users = iUserService.listAll(); session.setAttribute("users", users); response.sendRedirect("UserServlet?action=getPage"); } else { System.out.println("添加新用戶失??!"); PrintWriter out = response.getWriter(); out.print("<script type="text/javascript">"); out.print("alert("添加新用戶失??!請重試!");"); out.print("</script>"); } }

修改用戶時注意考慮圖片更改和沒更改這兩種情況,圖片更改時要先獲取原圖片并刪除其在服務(wù)器上的圖片,再添加新圖片到服務(wù)器;圖片不更改時則無需更新圖片路徑。

 // 改 public void update(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { System.out.println("update方法被調(diào)用"); HttpSession session = request.getSession(); // 獲取數(shù)據(jù) int id = (int)session.getAttribute("id"); String username = null; String password = null; String sex = null; Date birthday = null; String address = null; String saveFileName = null; String picturePath = null; IUserService iUserService = new UserServiceImpl(); // 得到表單是否以enctype="multipart/form-data"方式提交 boolean isMulti = ServletFileUpload.isMultipartContent(request); if (isMulti) { // 通過FileItemFactory得到文件上傳的對象 FileItemFactory fif = new DiskFileItemFactory(); ServletFileUpload upload = new ServletFileUpload(fif); try { List<FileItem> items = upload.parseRequest(request); for (FileItem item : items) { // 判斷是否是普通表單控件,或者是文件上傳表單控件 boolean isForm = item.isFormField(); if (isForm) {// 是普通表單控件 String name = item.getFieldName(); if ("sex".equals(name)) { sex = item.getString("utf-8"); System.out.println(sex); } if ("username".equals(name)) { username = item.getString("utf-8"); System.out.println(username); } if ("password".equals(name)) { password = item.getString("utf-8"); System.out.println(password); } if ("birthday".equals(name)) { String birthdayStr = item.getString("utf-8"); SimpleDateFormat sdf = new SimpleDateFormat(  "yyyy-MM-dd"); try { birthday = sdf.parse(birthdayStr); } catch (ParseException e) { e.printStackTrace(); } System.out.println(birthday); } if ("address".equals(name)) { address = item.getString("utf-8"); System.out.println(address); } if ("picturePath".equals(name)) { picturePath = item.getString("utf-8"); System.out.println(picturePath); } } else {// 是文件上傳表單控件 // 得到文件名 xxx.jpg picturePath = item.getName(); if (picturePath != "") {// 有選擇要上傳的圖片 // 得到文件名的擴展名:.jpg String extendedName = picturePath.substring(  picturePath.lastIndexOf("."),// 截取從最后一個"."到字符串結(jié)束的子串。  picturePath.length()); // 把文件名稱重命名為全球唯一的文件名 String uniqueName = UUID.randomUUID().toString(); saveFileName = uniqueName + extendedName;// 拼接路徑名 // 得到上傳到服務(wù)器上的文件路徑 // C:\\apache-tomcat-7.0.47\\webapps\\CommonhelloWorldServlet\\upload\\xx.jpg String uploadFilePath = request.getSession()  .getServletContext().getRealPath("upload/"); File saveFile = new File(uploadFilePath,  saveFileName); // 把保存的文件寫出到服務(wù)器硬盤上 try { item.write(saveFile); } catch (Exception e) { e.printStackTrace(); } // 3、調(diào)用邏輯層 API // 根據(jù)id查詢用戶并獲取其之前的圖片 User user = iUserService.getUserById(id); String oldPic = user.getPicturePath(); String oldPicPath = uploadFilePath + "\\" + oldPic; File oldPicTodelete = new File(oldPicPath); oldPicTodelete.delete();// 刪除舊圖片 } } } } catch (NumberFormatException e) { e.printStackTrace(); } catch (FileUploadException e) { e.printStackTrace(); } } System.out.println(id + "\t" + username + "\t" + password + "\t" + sex + "\t" + address + "\t" + picturePath + "\t" + birthday);  // 2、封裝數(shù)據(jù) User user = new User(id, username, password, sex, birthday, address, saveFileName);  if (iUserService.update(user) > 0) { System.out.println("修改數(shù)據(jù)成功!"); List<User> users = new ArrayList<User>(); users = iUserService.listAll(); session.setAttribute("users", users); // 4、控制跳轉(zhuǎn) response.sendRedirect("UserServlet?action=getPage"); } else { System.out.println("修改數(shù)據(jù)失敗!"); PrintWriter out = response.getWriter(); out.print("<script type="text/javascript">"); out.print("alert("修改數(shù)據(jù)失敗!請重試!");"); out.print("</script>"); } }

刪除的話就比較簡單了,直接獲取原圖片路徑并刪除,則原圖片在服務(wù)器上被刪除。

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持。

標簽: JSP
相關(guān)文章:
主站蜘蛛池模板: 特级a毛片| 亚洲美女一级片 | 亚洲国产激情 | 美女双腿打开让男人桶爽网站 | 美女让我桶 | 久久一区视频 | 欧美一区二区不卡视频 | 日韩一级欧美一级毛片在 | 久草免费资源视频 | 国产亚洲精品久久 | 一级做a爰 | 成人a大片高清在线观看 | 国产精品久久久久久影院 | 日本一级高清不卡视频在线 | 午夜影院啪啪 | 日本一区二区三区高清福利视频 | 免费看黄色三级毛片 | 手机看黄av免费网址 | 欧美日韩一区二区三区免费 | 国产色a在线观看 | 欧美成人午夜影院 | 在线a毛片免费视频观看 | 国产a精品| 午夜精品在线 | 天天插夜夜爽 | 欧美午夜成年片在线观看 | 精品国产自在现线看久久 | 日韩特级 | 玖草在线播放 | 男人又粗又硬桶女人免费 | 日韩在线观看不卡 | 国产成人久久一区二区三区 | 国产高清av在线播放 | 亚洲欧美中文日韩二区一区 | 纯欧美一级毛片免费 | 一级做a爱片特黄在线观看免费看 | 国产日产久久高清欧美一区 | 亚洲一区二区三区精品国产 | 萝控精品福利视频一区 | 日韩精品亚洲一级在线观看 | 久久久久久久91精品免费观看 |