成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

怎么在Java中使用MultipartFile實(shí)現(xiàn)一個(gè)文件上傳功能-創(chuàng)新互聯(lián)

怎么在Java 中使用MultipartFile實(shí)現(xiàn)一個(gè)文件上傳功能?針對這個(gè)問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡單易行的方法。

目前成都創(chuàng)新互聯(lián)已為千余家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)站空間、網(wǎng)站托管運(yùn)營、企業(yè)網(wǎng)站設(shè)計(jì)、丹寨網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。

1. 判斷允許上傳文件的 文件后綴/圖片后綴/相片后綴 和 其它工具類

import org.springframework.stereotype.Component;
import java.io.File;
import java.util.Arrays;
import java.util.List;

@Component
public class FileUtil {
  public static final List<String> IMAGE_EXTENSIONS = Arrays.asList(".jpg", ".jpeg", ".png");
}

import java.util.UUID;

public class CommonUtil {
  public static String getUUID() {
    String uuid = UUID.randomUUID().toString().replaceAll("-", "");
    return uuid;
  }
}

import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;

public class DateUtil {
  public static final String HH = "HH";
  public static final String YYYY_MM_DD = "yyyy-MM-dd";
  public static final DateTimeFormatter FORMATTER_HH = DateTimeFormatter.ofPattern(HH);
  public static final DateTimeFormatter FORMATTER_YYYY_MM_DD = DateTimeFormatter.ofPattern(YYYY_MM_DD);
  public static String getHH() {
    return FORMATTER_HH.format(LocalDateTime.now());
  }
  public static String getYYYYMMDD() {
    return FORMATTER_YYYY_MM_DD.format(LocalDateTime.now());
  }
}

2. 上傳接口

@PostMapping("/updateImage.do")
public Map<String, String> updateImage(@RequestParam("image") MultipartFile[] multfiles) {
  	Map<String, String> result = new HashMap<>();
    if (multfiles.length == 0) {
			result.put("message", "請選擇圖片!");
			return result;
    }

    // 源文件名稱
    final String originalFileName = multfiles[0].getOriginalFilename();
    if (StringUtils.isBlank(originalFileName)) {
			result.put("message", "請選擇圖片!");
			return result;
    }

    // 文件后綴[.jpg]
    final String suffix = originalFileName.substring(originalFileName.lastIndexOf(".")).toLowerCase();
    if (!FileUtil.IMAGE_EXTENSIONS.contains(suffix)) {
			result.put("message", "圖片格式錯(cuò)誤!");
			return result;
    }

    String lastFilePath;
    String newFileName = CommonUtil.getUUID() + suffix;
    String folderName = File.separator + "temp" + File.separator;
    String relativePath = folderName + DateUtil.getYYYYMMDD() + File.separator + DateUtil.getHH();
    String filePath = "D:\\file" + relativePath;
    String fileUrl = null;
    File targetFile = new File(filePath);
    if (!targetFile.exists()) {
      targetFile.mkdirs();
    }
    FileOutputStream out = null;
    try {
      lastFilePath = filePath + File.separator + newFileName;
      out = new FileOutputStream(lastFilePath);
      out.write(multfiles[0].getBytes());
      fileUrl = "http://127.0.0.1:9000" + relativePath + File.separator + newFileName;
    } catch (Exception e) {
      e.printStackTrace();
    } finally {
      if (out != null) {
        try {
          out.flush();
        } catch (IOException e) {
          e.printStackTrace();
        }
        try {
          out.close();
        } catch (IOException e) {
          e.printStackTrace();
        }
      }
    }

    if (fileUrl == null) {
			result.put("message", "圖片上傳失?。?quot;);
			return result;
    }

		result.put("message", "上傳成功!");
		result.put("url", fileUrl);
		return result;
  }

3. 上傳成功

url => http://127.0.0.1:9000/temp/2019-09-12/14/0eac00b96f134652b34172e84febe8d1.jpg

關(guān)于怎么在Java 中使用MultipartFile實(shí)現(xiàn)一個(gè)文件上傳功能問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。

文章題目:怎么在Java中使用MultipartFile實(shí)現(xiàn)一個(gè)文件上傳功能-創(chuàng)新互聯(lián)
網(wǎng)頁網(wǎng)址:http://jinyejixie.com/article26/csohcg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供云服務(wù)器、域名注冊品牌網(wǎng)站建設(shè)、搜索引擎優(yōu)化、網(wǎng)站制作品牌網(wǎng)站制作

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

搜索引擎優(yōu)化
城步| 青州市| 舒城县| 广安市| 昭觉县| 年辖:市辖区| 大埔县| 沭阳县| 株洲县| 五大连池市| 邯郸市| 勃利县| 盐池县| 峡江县| 吉林市| 孝感市| 白银市| 巢湖市| 内江市| 通渭县| 新河县| 明光市| 广水市| 永胜县| 横山县| 威宁| 临江市| 建昌县| 芜湖市| 泰顺县| 枞阳县| 屏东县| 彰化县| 松潘县| 株洲县| 石狮市| 靖州| 南川市| 抚松县| 弥渡县| 白城市|