SpringBoot+Vue实现简单的文件上传(Excel篇)

SpringBoot+Vue实现简单的文件上传

1 环境 SpringBoot 3.2.1,Vue 2,ElementUI
2 页面

3 效果 :只能上传xls文件且大小限制为2M,选择文件后自动上传。
4 前端代码

javascript 复制代码
<template>
  <div class="container">
    <el-upload
        class="upload-demo"
        drag
        action="/xml/fileUpload"
        multiple
        accept=".xls"
    :before-upload="beforeUpload">
      <i class="el-icon-upload"></i>
      <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
      <div class="el-upload__tip"><slot name="tip" > 只能上传 xls 文件,且不超过2M</slot></div>
    </el-upload>
  </div>
</template>

<script>
// import axios from "axios";

export default {
  name: 'App',
  data() {
    const data = [];
    return {
      filterText: '',
      data: JSON.parse(JSON.stringify(data)),
      copyData: [],
      nodeForm: {},
      formShow: false,
      checkNode: {},
      xml: '',
      typeList: [
        {
          value: 'root',
          label: '根节点'
        }, {
          value: 'node',
          label: '子节点'
        }
      ]
    }
  },
  watch: {},
  created() {
  },
  methods: {
    beforeUpload(file){
      const isText = file.type == "application/vnd.ms-excel"
      const isLt2M = file.size /1024 /1024 < 2
      if(!isText){
        this.$message.error("只能上传xls文件!")
        return false;
      }
      if(!isLt2M){
        this.$message.error("文件大小超过限制!")
        return false;
      }
      return true;
    }

  }
}
</script>

<style>
.container {
  display: flex;
}
</style>

5 后端代码

java 复制代码
package org.wjg.onlinexml.service.impl;

import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.springframework.stereotype.Service;
import org.springframework.web.multipart.MultipartFile;
import org.wjg.onlinexml.po.Result;
import org.wjg.onlinexml.service.FileService;

import java.io.IOException;

@Service("xls")
public class XLSServiceImpl implements FileService {

    @Override
    public Result upload(MultipartFile file) {
        if (file.isEmpty()) {
            return Result.builder().code(500).msg("上传失败!").build();
        }


        try (Workbook workbook = new HSSFWorkbook(file.getInputStream())) {
            //获取第一个sheet页
            Sheet sheet = workbook.getSheetAt(0);
            //遍历每行
            for (Row row : sheet) {
                //遍历每个单元格
                for (Cell cell : row) {
                    System.out.print(cell.getStringCellValue() + " ");
                }
                System.out.println();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }

        return Result.builder().code(200).msg("上传成功").build();
    }
}
相关推荐
s***87272 分钟前
跟据spring boot版本,查看对应的tomcat,并查看可支持的tomcat的版本范围
spring boot·后端·tomcat
a***11353 分钟前
使用Kubernetes部署Spring Boot项目
spring boot·容器·kubernetes
-大头.8 分钟前
Spring Boot CLI 从入门到企业级实战(上下篇)
java·spring boot·后端
q***046316 分钟前
将 vue3 项目打包后部署在 springboot 项目运行
java·spring boot·后端
yqcoder19 分钟前
Vue2 和 Vue3 中祖先组件和子孙组件的通信方法和区别
前端·javascript·vue.js
鹏多多20 分钟前
前端组件二次封装实战:Vue+React基于Element UI/AntD的高效封装策略
前端·vue.js·react.js
中工钱袋27 分钟前
Spring Task 使用指南
java·spring boot·spring
北极糊的狐30 分钟前
使用 vue-awesome-swiper 实现轮播图(Vue3实现教程)
前端·javascript·vue.js
Qiuner39 分钟前
Spring Boot 机制三: ApplicationContext 生命周期与事件机制源码解析
java·spring boot·后端·生命周期·事件机制
Tatalaluola41 分钟前
Unity使用EPPlus读取写入表格
unity·c#·游戏引擎·excel