您好,登錄后才能下訂單哦!
Java是一門面向對象編程語言,不僅吸收了C++語言的各種優點,還摒棄了C++里難以理解的多繼承、指針等概念,因此Java語言具有功能強大和簡單易用兩個特征。Java語言作為靜態面向對象編程語言的代表,極好地實現了面向對象理論,允許程序員以優雅的思維方式進行復雜的編程 。
Java具有簡單性、面向對象、分布式、健壯性、安全性、平臺獨立與可移植性、多線程、動態性等特點 。Java可以編寫桌面應用程序、Web應用程序、分布式系統和嵌入式系統應用程序等 。
第二步驟:主要功能實現。springboot默認是集成springmvc,使用springboot和直接使用springmvc上傳是一樣的。springboot默認是集成springmvc,使用springboot和直接使用springmvc上傳是一樣的。
2、前端代碼:
1、具體代碼如下所示:
此處直接使用的表單同步提交。
<!DOCTYPE html> <html> <head> <title>圖片上傳</title> <meta name="keywords" content="keyword1,keyword2,keyword3"></meta> <meta name="description" content="this is my page"></meta> <meta name="content-type" content="text/html; charset=UTF-8"></meta> </head> <body> <form enctype="multipart/form-data" method="post" action="/testUploadimg"> 圖片:<input type="file" name="file" /><br/> <input type="submit" value="上傳" />. </form> </body> </html>
控制器UploadController 實現
UploadController 主要分為3部分
1.1 調整頁面請求goUploadImg
1.2 上傳請求方法uploadImg
1.3 存儲圖片方法uploadFile
@Controllerpublic class UploadController { //跳轉到上傳文件的頁面 @RequestMapping(value = "/gouploadimg", method = RequestMethod.GET) public String goUploadImg() { //跳轉到 templates 目錄下的 uploadimg.html return "uploadimg"; } //處理文件上傳 @ResponseBody //返回json數據 @RequestMapping(value = "/testUploadimg", method = RequestMethod.POST) public String uploadImg(@RequestParam("file") MultipartFile file, HttpServletRequest request) { tring contentType = file.getContentType(); String fileName = file.getOriginalFilename(); String filePath = "D:/img"; if (file.isEmpty()) { return "文件為空!"; } try { uploadFile(file.getBytes(), filePath, fileName); } catch (Exception e) { // TODO: handle exception } //返回json return "上傳成功"; } public static void uploadFile(byte[] file, String filePath, String fileName) throws Exception { File targetFile = new File(filePath); if (!targetFile.exists()) { targetFile.mkdirs(); } FileOutputStream out = new FileOutputStream(filePath +"/"+ fileName); out.write(file); out.flush(); out.close(); } }
2:同時需要將上傳圖片的原始文件名和存儲文件名、以及關聯id存入一個數據表中。
2.1 將存儲文件名設置為UUID,避免存儲文件名重復
public static String getUUID(){ UUID uuid=UUID.randomUUID(); String str = uuid.toString(); String uuidStr=str.replace("-", ""); return uuidStr; }
2.2 將存儲文件名按照時間生成,避免存儲文件名重復
System.nanoTime()
該函數是返回納秒的。1毫秒=1納秒*1000*1000
如:long time1=System.nanoTime();
2.3 或者借助于SimpleDateFormat 將Date格式化到毫秒也可以解決文件重名的問題。
測試。
打開頁面地址如下圖所示:
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。