欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

springboot上传图片文件步骤详解

程序员文章站 2022-06-30 20:06:28
步骤一:基于前面springboot入门小demo  基于的springboot入门小demo,已包含了前面文章的知识点(比如:热部署、全局异常处理器)。步骤二:创建uploadpage.jsp上传页...

步骤一:基于前面springboot入门小demo

  基于的springboot入门小demo,已包含了前面文章的知识点(比如:热部署、全局异常处理器)。

步骤二:创建uploadpage.jsp上传页面  

  在jsp目录下新建uploadpage.jsp,需要几点:
  1. method="post" 是必须的
  2. enctype="multipart/form-data" 是必须的,表示提交二进制文件
  3. name="file" 是必须的,和后续服务端对应
  4. accept="image/*" 表示只选择图片

<%@ page language="java" contenttype="text/html; charset=utf-8"
  pageencoding="utf-8"%>
<!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3.org/tr/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>图片上传</title>
</head>
<body>
  <form action="upload" method="post" enctype="multipart/form-data">
    选择图片:<input type="file" name="file" accept="image/*" /> <br>
    <input type="submit" value="立刻上传">
  </form>
</body>
</html>

步骤三:创建uploadcontroller.java

  因为uploadpage.jsp在web-inf下,不能直接从浏览器访问,所以要在这里加一个uploadpage跳转,这样就可以通过。

  测试访问页面:http://127.0.0.1:8080/uploadpage

  访问到uploadpage.jsp页面了(只是可以访问,还不能上传)。

package cn.xdf.springboot.controller;

import java.io.file;
import java.io.filenotfoundexception;
import java.io.ioexception;

import javax.servlet.http.httpservletrequest;

import org.springframework.stereotype.controller;
import org.springframework.ui.model;
import org.springframework.web.bind.annotation.postmapping;
import org.springframework.web.bind.annotation.requestmapping;
import org.springframework.web.bind.annotation.requestparam;
import org.springframework.web.multipart.multipartfile;

@controller
public class uploadcontroller {
  // 因为uploadpage.jsp 在web-inf下,不能直接从浏览器访问,所以要在这里加一个uploadpage跳转,这样就可以通过
  @requestmapping("/uploadpage")
  public string uploadpage() {
    return "uploadpage";  //过度跳转页
  }

  @postmapping("/upload") // 等价于 @requestmapping(value = "/upload", method = requestmethod.post)
  public string uplaod(httpservletrequest req, @requestparam("file") multipartfile file, model m) {//1. 接受上传的文件 @requestparam("file") multipartfile file
    try {
      //2.根据时间戳创建新的文件名,这样即便是第二次上传相同名称的文件,也不会把第一次的文件覆盖了
      string filename = system.currenttimemillis() + file.getoriginalfilename();
      //3.通过req.getservletcontext().getrealpath("") 获取当前项目的真实路径,然后拼接前面的文件名
      string destfilename = req.getservletcontext().getrealpath("") + "uploaded" + file.separator + filename;
      //4.第一次运行的时候,这个文件所在的目录往往是不存在的,这里需要创建一下目录(创建到了webapp下uploaded文件夹下)
      file destfile = new file(destfilename);
      destfile.getparentfile().mkdirs();
      //5.把浏览器上传的文件复制到希望的位置
      file.transferto(destfile);
      //6.把文件名放在model里,以便后续显示用
      m.addattribute("filename", filename);
    } catch (filenotfoundexception e) {
      e.printstacktrace();
      return "上传失败," + e.getmessage();
    } catch (ioexception e) {
      e.printstacktrace();
      return "上传失败," + e.getmessage();
    }

    return "showimg";
  }
}

步骤四:创建showimg.jps

<%@ page language="java" contenttype="text/html; charset=utf-8"
  pageencoding="utf-8"%>
<!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3.org/tr/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>上传图片</title>
</head>
<body>
  <img src="/uploaded/${filename}">
</body>
</html>

  文件最终上传到webapp下面的uploaded文件夹下面,如果看不到,就刷新一哈。

  所以通过这个 <img src="/uploaded/${filename}"> 链接,就可以访问到图片。

步骤五:修改application.properties

  设置上传文件的大小,默认是1m,太小了,文件稍微大一点就会出错

spring.mvc.view.prefix=/web-inf/jsp/
spring.mvc.view.suffix=.jsp
spring.http.multipart.maxfilesize=100mb
spring.http.multipart.maxrequestsize=100mb

步骤六:测试

  访问测试地址:http://127.0.0.1:8080/uploadpage

springboot上传图片文件步骤详解

  上传成功后,跳转到showimg.jsp访问图片资源。

springboot上传图片文件步骤详解

  (看到美女,就比较精神!!!)

到此这篇关于springboot上传图片文件步骤详解的文章就介绍到这了,更多相关springboot上传图片文件内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!