您好,登錄后才能下訂單哦!
這期內(nèi)容當中的小編將會給大家?guī)碛嘘Pjava將圖片上傳數(shù)據(jù)庫和本地服務器的方法,以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
實現(xiàn)的思路:
工具:MySQL,eclipse
首先,在MySQL中創(chuàng)建了兩個表,一個t_user表,用來存放用戶名,密碼等個人信息,一個t_touxiang表,用來存放上傳的圖片在服務器中的存放路徑,以及圖片名字和用戶ID,T_touxiang表中的用戶ID對應了t_user中的id。
t_user表SQL:
DROP TABLE IF EXISTS `t_user`; CREATE TABLE `t_user` ( `id` int(10) NOT NULL AUTO_INCREMENT, `username` varchar(20) NOT NULL, `password` varchar(255) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `username` (`username`) ) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8;
T_touxiang表SQL:
DROP TABLE IF EXISTS `t_touxiang`; CREATE TABLE `t_touxiang` ( `id` int(10) NOT NULL AUTO_INCREMENT, `image_path` varchar(255) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `old_name` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), KEY `img_user` (`user_id`), CONSTRAINT `img_user` FOREIGN KEY (`user_id`) REFERENCES `t_user` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
首先,寫一個UploadServlet.java,用來處理圖片文件的上傳,并將圖片路徑,圖片名稱等信息存放到t_touxiang數(shù)據(jù)表中,代碼如下:
@WebServlet("/UploadServlet.do") public class UploadServlet extends HttpServlet { private static final long serialVersionUID = 1L; protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // 判斷上傳表單是否為multipart/form-data類型 HttpSession session = request.getSession(); User user = (User) session.getAttribute("user"); // 在登錄時將 User 對象放入了會話中 if (ServletFileUpload.isMultipartContent(request)) { try { // 1. 創(chuàng)建DiskFileItemFactory對象,設置緩沖區(qū)大小和臨時文件目錄 DiskFileItemFactory factory = new DiskFileItemFactory(); // System.out.println(System.getProperty("java.io.tmpdir"));//默認臨時文件夾 // 2. 創(chuàng)建ServletFileUpload對象,并設置上傳文件的大小限制。 ServletFileUpload sfu = new ServletFileUpload(factory); sfu.setSizeMax(10 * 1024 * 1024);// 以byte為單位 不能超過10M 1024byte = // 1kb 1024kb=1M 1024M = 1G sfu.setHeaderEncoding("utf-8"); // 3. // 調(diào)用ServletFileUpload.parseRequest方法解析request對象,得到一個保存了所有上傳內(nèi)容的List對象。 @SuppressWarnings("unchecked") List<FileItem> fileItemList = sfu.parseRequest(request); Iterator<FileItem> fileItems = fileItemList.iterator(); // 4. 遍歷list,每迭代一個FileItem對象,調(diào)用其isFormField方法判斷是否是上傳文件 while (fileItems.hasNext()) { FileItem fileItem = fileItems.next(); // 普通表單元素 if (fileItem.isFormField()) { String name = fileItem.getFieldName();// name屬性值 String value = fileItem.getString("utf-8");// name對應的value值 System.out.println(name + " = " + value); } // <input type="file">的上傳文件的元素 else { String fileName = fileItem.getName();// 文件名稱 System.out.println("原文件名:" + fileName);// Koala.jpg String suffix = fileName.substring(fileName.lastIndexOf('.')); System.out.println("擴展名:" + suffix);// .jpg // 新文件名(唯一) String newFileName = new Date().getTime() + suffix; System.out.println("新文件名:" + newFileName);// image\1478509873038.jpg // 5. 調(diào)用FileItem的write()方法,寫入文件 File file = new File("D:/lindaProjects/mySpace/wendao/WebContent/touxiang/" + newFileName); System.out.println(file.getAbsolutePath()); fileItem.write(file); // 6. 調(diào)用FileItem的delete()方法,刪除臨時文件 fileItem.delete(); /* * 存儲到數(shù)據(jù)庫時注意 1.保存源文件名稱 Koala.jpg 2.保存相對路徑 * image/1478509873038.jpg * */ if (user != null) { int myid = user.getId(); String SQL = "INSERT INTO t_touxiang(image_path,user_id,old_name)VALUES(?,?,?)"; int rows = JdbcHelper.insert(SQL, false, "touxiang/" + newFileName, myid, fileName); if (rows > 0) { session.setAttribute("image_name", fileName); session.setAttribute("image_path", "touxiang/" + newFileName); response.sendRedirect(request.getContextPath() + "/upImage.html"); } else { } } else { session.setAttribute("loginFail", "請登錄"); response.sendRedirect(request.getContextPath() + "/login.html"); } } } } catch (FileUploadException e) { e.printStackTrace(); } catch (Exception e) { e.printStackTrace(); } } } }
在完成圖片上傳并寫入數(shù)據(jù)庫的同時,將圖片路徑通過session的方式發(fā)送到HTML界面
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>更換頭像</title> </head> <body> <formaction="UploadServlet.do" method="post"enctype="multipart/form-data"> 本地目錄:<inputtype="file" name="uploadFile"> <img src="${image_path}" width="200" height="200"> <inputtype="submit" value="上傳頭像"/> </form> </body> </html>
至此,圖片上傳數(shù)據(jù)庫和本地服務器已經(jīng)實現(xiàn)。
上述就是小編為大家分享的java將圖片上傳數(shù)據(jù)庫和本地服務器的方法了,如果您也有類似的疑惑,不妨礙參照上述分析進行理解。如果想了解更多相關內(nèi)容,請關注億速云行業(yè)資訊。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。