0


Java中获取某个目录下文件的方式

1.获取方式1

使用ClassPathResource获取路径下的文件。

一般来说,我们项目的配置文件及静态资源都会放置在resources目录下。有时我们在项目中使用到resources目录下的文件,这时我们可以使用Spring下的Resouce接口来读取。具体代码如下
Resource resource = new ClassPathResource(“static/Std_Resource_Train_Model.xls”);
// 因为Resouce是一个接口 所以我们可以使用它的实现类ClassPathResource来new一个对象。而构造方法的参数便是resources目录下的文件路径,注意这里是使用的相对路径(相对于resouces目录而言的)。

2.示例1

文件位置

service层

    public void export() throws IOException {
//        String path = "classpath:templates/shelfimport.xlsx";
//        InputStream inputStream = new ClassPathResource("templates/shelfimport.xlsx").getInputStream();
//
        String path1 = new ClassPathResource("templates/shelfimport.xlsx").getPath();
        String filename = new ClassPathResource("templates/shelfimport.xlsx").getFilename();
        InputStream inputStream = new ClassPathResource("templates/shelfimport.xlsx").getInputStream();
        DynamicHeaderListener listener = new DynamicHeaderListener();
        EasyExcel.read(inputStream, listener).sheet().headRowNumber(1).doReadSync();
        List<Map<Integer, String>> list = listener.getList();
        list.forEach(item -> {
            item.forEach((k,v)->{
                System.out.println(k);
                System.out.println(v);
            });
        });
//        System.out.println(path);
        System.out.println(path1);
        System.out.println(filename);
//        String path1 = this.getClass().getResource("templates/shelfimport.xlsx").getPath();
//        System.out.println(path1);
    }

3.获取方式2

使用当前类的getClass方法获取相应的文件。

4.示例2

        String path = "template/shelfimport.xlsx";
        InputStream resourceAsStream = this.getClass().getClassLoader().getResourceAsStream(path);
        DanyListener danyListener = new DanyListener();
        EasyExcel.read(resourceAsStream, danyListener).sheet(0).headRowNumber(1).doRead();
        List<HashMap<Integer, String>> dataList = danyListener.getDataList();
        dataList.forEach((item) -> {
            item.forEach((K, V) -> {
                System.out.println(K);
                System.out.println(V);
            });
        });

本文转载自: https://blog.csdn.net/m0_72167535/article/details/128982729
版权归原作者 linab112 所有, 如有侵权,请联系我们删除。

“Java中获取某个目录下文件的方式”的评论:

还没有评论