RestTemplate上传图片
生活随笔
收集整理的這篇文章主要介紹了
RestTemplate上传图片
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
今天用RestTemplate上傳圖片,在這里分享下。
同事定義的接收類型為MultipartFile,這是spring的對文件上傳的一個組件。
我現在做的是跟以前的系統對接,圖片上傳之后使用BASE64處理的,所以我這里是使用BASE64對數據解碼,然后處理。先看代碼:
Controller的主代碼:
用到的工具類utils :
package com.test;import java.io.*; import java.util.Arrays;/*** Created by pangkunkun on 2017/6/27.*/ public class utils {public static String getSuffix(byte[] source){byte[] byteSuffix= Arrays.copyOf(source,3);String hexSuffix=bytesToHexString(byteSuffix);switch (hexSuffix){case "89504e":return ".png";case "ffd8ff":return ".jpg";default:return ".jpg";}}public static String bytesToHexString(byte[] src) {StringBuilder stringBuilder = new StringBuilder();if (src == null || src.length <= 0) {return null;}for (int i = 0; i < src.length; i++) {int v = src[i] & 0xFF;String hv = Integer.toHexString(v);if (hv.length() < 2) {stringBuilder.append(0);}stringBuilder.append(hv);}return stringBuilder.toString().toLowerCase();}public static byte[] File2byte(String filePath){byte[] buffer = null;try{File file = new File(filePath);FileInputStream fis = new FileInputStream(file);ByteArrayOutputStream bos = new ByteArrayOutputStream();byte[] b = new byte[1024];int n;while ((n = fis.read(b)) != -1){bos.write(b, 0, n);}fis.close();bos.close();buffer = bos.toByteArray();}catch (FileNotFoundException e){e.printStackTrace();}catch (IOException e){e.printStackTrace();}return buffer;} }因為我們的項目默認只有png和jpg,所以上面獲取圖片格式(文件后綴名)的方法我只處理了兩種格式的,如果有其它的需要,可以上網查下相關格式對應的后綴名添加上去。
特別說下,因為我是用本地圖片測的,所以在網上找到兩種方法:
FileSystemResource fileResource = new FileSystemResource(new File("d://image"));和
byte[] rawBytes = utils.File2byte("d://test.png");//將圖片轉為byte[]// byte[] rawBytes=decoder.decodeBuffer(image);String suffix=utils.getSuffix(rawBytes);//獲取圖片的后綴名,也可以是其他任意文件名String fileName="myImage"+suffix;//ByteArrayResource fileResource = new ByteArrayResource(rawBytes) {@Overridepublic String getFilename() {return fileName;}};第一種不多說了,很簡單。
第二種比較復雜,但是比較符合我的需求,而且不需要把文件本地化。
但是這里有個地方需要注意下,使用ByteArrayResource 必須要實現getFilename。
但是上面的方法是針對MultipartFile,如果接收方使用的是File對象,傳的時候直接使用一般的文件就行:
File file =new File("d://image");將file直接作為一個參數傳過去就OK。
總結
以上是生活随笔為你收集整理的RestTemplate上传图片的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: windows 8 微软拼音输入法
- 下一篇: Laplace Approximatio