前言:
现时兄弟们对“java图片预览”可能比较珍视,小伙伴们都需要分析一些“java图片预览”的相关文章。那么小编在网上网罗了一些关于“java图片预览””的相关知识,希望姐妹们能喜欢,各位老铁们一起来了解一下吧!本号主要用于分享企业中常用的技术,更加侧重于实用,欢迎关注,便于浏览其它更多实用的历史文章。1. pom.xml
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId></dependency><dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId></dependency>2. application.properties
spring.servlet.multipart.max-request-size=10MBspring.servlet.multipart.max-file-size=10MB3. html
upload.html
<!DOCTYPE html><html xmlns:th=""><body><h1>Spring Boot file upload example</h1><form method="POST" action="/upload" enctype="multipart/form-data"> <input type="file" name="file" /><br/><br/> <input type="submit" value="提交" /></form></body></html>
resut.html
<!DOCTYPE html><html lang="en" xmlns:th=""><body><div th:if="${message}"> <h2 th:text="${message}"/></div></body></html>4. SampleController
@Controllerpublic class SampleController { @GetMapping("/") public String upload() { return "upload"; } @RequestMapping("/result") public String result() { return "result"; } @PostMapping("/upload") public String singleFileUpload(@RequestParam("file") MultipartFile file, RedirectAttributes redirectAttributes) { if (file.isEmpty()) { redirectAttributes.addFlashAttribute("message", "Please select a file to upload"); return "redirect:result"; } try { // Get the file and save it somewhere byte[] bytes = file.getBytes(); Path path = Paths.get(uploadDirectory() + "/" + file.getOriginalFilename()); Files.write(path, bytes); redirectAttributes.addFlashAttribute("message", file.getOriginalFilename() + " upload success"); } catch (IOException e) { e.printStackTrace(); } return "redirect:/result"; } private String uploadDirectory() throws FileNotFoundException { //获取跟目录 File path = new File(ResourceUtils.getURL("classpath:").getPath()); if(!path.exists()) path = new File(""); System.out.println("path:"+path.getAbsolutePath()); //如果上传目录为/static/images/upload/,则可以如下获取: File upload = new File(path.getAbsolutePath(),"static/upload/"); if(!upload.exists()) upload.mkdirs(); System.out.println("upload url:"+upload.getAbsolutePath()); //在开发测试模式时,得到的地址为:{项目跟目录}/target/static/images/upload/ //在打包成jar正式发布时,得到的地址为:{发布jar包目录}/static/images/upload/ return upload.getAbsolutePath(); }}5.访问 localhost:8080/
选择上传文件进行上传
本号主要用于分享企业中常用的技术,更加侧重于实用,欢迎关注,便于浏览其它更多实用的历史文章。
版权声明:
本站文章均来自互联网搜集,如有侵犯您的权益,请联系我们删除,谢谢。
标签: #java图片预览