怎麼使用Java伺服器處理圖片上傳
一、簡述
第一:瀏覽器上傳圖片實作;
第二:微信小程式上傳圖片實作;
二、圖片上傳功能實現
1.處理H5的單一檔案上傳實作:
package cn.ncist.tms.attachment.controller; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.util.HashMap; import java.util.Map; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.multipart.MultipartFile; /** * 附件上传类 * * @author Fxh * */ @RequestMapping(value = "/fileUpload") @Controller public class AttachmentUpload { /** * 上传文件功能,以Post请求发送请求, * * @param request:请求对象 * @param reponse:响应对象 * @param file:上传的文件对象 * @return JSON串 : {"code":"S","msg":"服务调用成功"} * @throws IOException */ @RequestMapping(value = "/doFileUpload",method = RequestMethod.POST) @ResponseBody public Map<String,Object> doFileUpload(HttpServletRequest request, HttpServletResponse reponse, @RequestParam("file") MultipartFile srcFile) throws IOException{ /* * 注意:传入参数时,文件的注解@ReuqestParam("variable") -->variable指:前端的h6的控件的name值. * * 文件处理功能: 1.将获取的字节数组转化为文件对象,并保存在本地目录中; * * 文件处理思路: 1.将获取的(source)file对象,通过函数获取字节数组; * 2.实例化文件对象和文件输出流; * 3.将字节数组写入文件即可. * * 功能难度: 简单. */ //1.变量声明 Map<String,Object> result = null;// 返回结果变量 FileOutputStream fos = null; //写入文件的变量 File destFile = null; //写入的目的地文件(distination) try { result = new HashMap<String,Object>(); //2.参数验证 if(srcFile == null){ throw new RuntimeException("上传文件不存在"); } if(srcFile.getBytes().length == 0){ throw new RuntimeException("上传文件内容为空"); } //3.操作文件对象,写入本地目录的文件中 //3.1 截取文件后缀 String ext = srcFile.getOriginalFilename().substring(srcFile.getContentType().lastIndexOf( ".")+1); //3.2 实例化目标文件,根据当前的操作系统,指定目录文件, destFile = new File("D:"+File.separator+"descFolder"+File.separator+"descFile."+ext); //3.3 实例化流 fos = new FileOutputStream(destFile); //3.4 获取写入的字节数组,并写入文件 byte[] srcBytes = srcFile.getBytes(); fos.write(srcBytes); fos.flush(); //4.对输入、输出流进行统一管理 //已在文件finally代码块处理 result.put( "code", "S"); result.put( "msg", "服务调用成功"); result.put( "path", destFile.getAbsolutePath()); return result; } catch (Exception e) { // TODO: handle exception e.printStackTrace(); result = new HashMap<String,Object>(); result.put( "code", "F"); result.put( "msg", "服务调用失败"); result.put( "path", null); return result; } finally{ //关闭系统资源,避免占用资源. if(fos != null){ fos.close(); } } } }
2.微信或手機APP上傳圖片檔案的程式碼實作:
import java.io.BufferedInputStream; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.util.Enumeration; import java.util.HashMap; import java.util.Iterator; import java.util.Map; import java.util.Set; import javax.annotation.Resource; import javax.servlet.ServletInputStream; import javax.servlet.ServletOutputStream; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.jboss.netty.handler.codec.http.HttpRequest; import org.springframework.mock.web.MockMultipartFile; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.multipart.MultipartFile; import org.springframework.web.multipart.MultipartHttpServletRequest; import com.hlinkcloud.ubp.core.constant.RedisKeyConstant; import com.hlinkcloud.ubp.core.service.RedisService; import com.hlinkcloud.ubp.core.util.BaseStringUtil; import com.hlinkcloud.ubp.facade.bean.common.FastDFSFile; import com.hlinkcloud.ubp.facade.bean.common.FileManagerConfig; import com.hlinkcloud.ubp.facade.service.common.FileInfoService; import com.hlinkcloud.ubp.facade.service.permission.UserService; import com.hlinkcloud.ubp.facade.util.DictionaryCommUtil; import fr.opensagres.xdocreport.core.io.internal.ByteArrayOutputStream; /** * 微信上传图片业务 * * @author FengQi * */ @Controller @RequestMapping("/wx_upload") public class WxUploadImgBusiness { @Resource private UserService userService; @Resource private RedisService redisService; @Resource(name = "commonUtil") private DictionaryCommUtil commUtil; @Resource private FileInfoService fileService; /* 文件服务 */ @RequestMapping("/getUploadFilePath") @ResponseBody public Map<String, Object> doWxUploadFile(HttpServletRequest request, HttpServletResponse response) { HashMap<String, Object> map = new HashMap<String, Object>(); try { /* * // 注释:该部分是使用在没有使用sprinvMVC的架构下的图片上传. // 1.磁盘文件条目工厂 * DiskFileItemFactory factory = new DiskFileItemFactory(); * * //2.1 高速的文件上传处理类 ServletFileUpload sfu = new * ServletFileUpload(factory); * * List<FileItem> list = sfu.parseRequest(request); FileItem picture * = null; if(list != null && list.size() > 0){ for(FileItem item : * list){ if(!item.isFormField()){ picture = item; } } } */ // 1.将请求转化为操作流的请求对象. MultipartHttpServletRequest req = (MultipartHttpServletRequest) request; MultipartFile picture = req.getFile("file"); if(picture != null && picture.getBytes().length != 0){ // 2.将图片上传到服务器 byte[] bytes = picture.getBytes(); String ext = picture.getOriginalFilename().substring( picture.getOriginalFilename().lastIndexOf(".") + 1 ); // (备注:下列代码为内部业务代码,可根据公司自身的需求,进行更改) map.put("code", "S"); map.put( "msg", "服务调用成功"); map.put("statusCode", 200); map.put("data", filePath); }else{ throw new RuntimeException("上传图片异常或空图片!"); } } catch (IOException e) { e.printStackTrace(); map.put("code", "F"); map.put("msg", "服务调用失败"); map.put("statusCode", 500); map.put("data", null); } return map; } /** * 当不知道手机、微信传入前端的参数是什么时, * * 可调用该接口进行判断. * * @param request * @param response * @return * @throws IOException */ @RequestMapping(value = "/doUploadFileOfCI" , method = RequestMethod.POST ) public @ResponseBody Map<String,Object> doUploadFile( HttpServletRequest request,//请求对象 HttpServletResponse response) throws IOException{//响应对象 System.out.println("doTestMultipartFile:"); MultipartHttpServletRequest req = (MultipartHttpServletRequest) request; //此时说明请求对象是MultipartHttpServletRequest对象 MultipartFile picture = req.getFile("UploadedImage"); //遍历请求得到所有的数据. if(req != null){ //获取所有属性名 Enumeration enume= req.getAttributeNames(); while(enume.hasMoreElements()){ System.out.println("enume:"+enume.nextElement()); } //获取所有文件名 Iterator<String> fileNames = req.getFileNames(); while(fileNames.hasNext()){ System.out.println("fileNames:"+fileNames.next()); } //获取操作文件的map Map<String,MultipartFile> fileMap = req.getFileMap(); if(fileMap != null && fileMap.size() > 0){ Set<String> set = fileMap.keySet(); for(String key:set){ System.out.println("String:"+key); } } //获取请求流 InputStream is = req.getInputStream(); System.out.println("InputStream:"+is); int length = -1; while( (length = is.read()) != -1 ){ System.err.println("data:"+length); } //获取所有请求参数 Enumeration enumee = req.getParameterNames(); while(enumee.hasMoreElements()){ System.out.println("enumee:"+enumee.nextElement()); } } System.out.println(picture); return null; } }
以上是怎麼使用Java伺服器處理圖片上傳的詳細內容。更多資訊請關注PHP中文網其他相關文章!

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

Java 8引入了Stream API,提供了一種強大且表達力豐富的處理數據集合的方式。然而,使用Stream時,一個常見問題是:如何從forEach操作中中斷或返回? 傳統循環允許提前中斷或返回,但Stream的forEach方法並不直接支持這種方式。本文將解釋原因,並探討在Stream處理系統中實現提前終止的替代方法。 延伸閱讀: Java Stream API改進 理解Stream forEach forEach方法是一個終端操作,它對Stream中的每個元素執行一個操作。它的設計意圖是處

膠囊是一種三維幾何圖形,由一個圓柱體和兩端各一個半球體組成。膠囊的體積可以通過將圓柱體的體積和兩端半球體的體積相加來計算。本教程將討論如何使用不同的方法在Java中計算給定膠囊的體積。 膠囊體積公式 膠囊體積的公式如下: 膠囊體積 = 圓柱體體積 兩個半球體體積 其中, r: 半球體的半徑。 h: 圓柱體的高度(不包括半球體)。 例子 1 輸入 半徑 = 5 單位 高度 = 10 單位 輸出 體積 = 1570.8 立方單位 解釋 使用公式計算體積: 體積 = π × r2 × h (4

PHP和Python各有優勢,選擇應基於項目需求。 1.PHP適合web開發,語法簡單,執行效率高。 2.Python適用於數據科學和機器學習,語法簡潔,庫豐富。

PHP是一種廣泛應用於服務器端的腳本語言,特別適合web開發。 1.PHP可以嵌入HTML,處理HTTP請求和響應,支持多種數據庫。 2.PHP用於生成動態網頁內容,處理表單數據,訪問數據庫等,具有強大的社區支持和開源資源。 3.PHP是解釋型語言,執行過程包括詞法分析、語法分析、編譯和執行。 4.PHP可以與MySQL結合用於用戶註冊系統等高級應用。 5.調試PHP時,可使用error_reporting()和var_dump()等函數。 6.優化PHP代碼可通過緩存機制、優化數據庫查詢和使用內置函數。 7

Java是熱門程式語言,適合初學者和經驗豐富的開發者學習。本教學從基礎概念出發,逐步深入解說進階主題。安裝Java開發工具包後,可透過建立簡單的「Hello,World!」程式來實踐程式設計。理解程式碼後,使用命令提示字元編譯並執行程序,控制台上將輸出「Hello,World!」。學習Java開啟了程式設計之旅,隨著掌握程度加深,可創建更複雜的應用程式。
