java实现获取项目中指定文件的全路径

2021/10/13 17:14:39

本文主要是介绍java实现获取项目中指定文件的全路径,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

  • 文件在项目中的位置
    在这里插入图片描述

  • 代码实现

package com.tests.controller;

import com.tests.utils.ExcelUtil;
import com.tests.utils.ExportExcel;
import org.springframework.stereotype.Controller;
import org.springframework.util.ClassUtils;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;


@Controller
@RequestMapping("/load")
public class DownLoadController {

    @RequestMapping("/down")
    @ResponseBody
    public void down(HttpServletResponse response) throws Exception {

        //获取文件路径
        String path  = ClassUtils.getDefaultClassLoader().getResource("").getPath()+ "static/wj/工作表.xlsx";
        System.out.println("path = " + path);
    }
}

  • 输出结果
E:\ideawork\testclient\src\main\resources\static\wj\工作表.xlsx


这篇关于java实现获取项目中指定文件的全路径的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程