返回顶部
首页 > 资讯 > 后端开发 > Python >详解Spring boot操作文件的多种方式
  • 724
分享到

详解Spring boot操作文件的多种方式

2024-04-02 19:04:59 724人浏览 薄情痞子

Python 官方文档:入门教程 => 点击学习

摘要

目录一、获取文件路径1、class.getResource(path)2、ClassLoader.getResource(path)3、项目路径二、操作文件的三种方式1、ClassP

一、获取文件路径

获取文件路径

1、class.getResource(path)

其中的参数path有两种形式,一种是以“/”开头的,另一种是不以"/"开头;

  • 「以'/'开头的表示」:从项目的根路径下去获取文件即classPath目录下。
  • 不以"/"开头:以该类对象所在位置**为根路径来进行查找的。

// 1.获取当前文件所在的路径
System.out.println(this.getClass().getResource("").getPath());
// 2.获取再 target 下 classpath 路径
System.out.println(this.getClass().getResource("/").getPath());

img

class.getResource()和class.getResourceAsStream()方式的使用在路径上是一致的。

2、ClassLoader.getResource(path)


// 3.也是获取 classpath 的绝对路径
System.out.println(Thread.currentThread().getContextClassLoader().getResource("").getPath());
// 4.也是获取 classpath 的绝对路径
System.out.println(this.getClass().getClassLoader().getResource("").getPath());
// 5.也是获取 classpath 的绝对路径
System.out.println(ClassLoader.getSystemResource("").getPath());

img

3、项目路径


//6.获取当前项目路径(此方法与 7 效果相同,但是可以将路径转为标准形式,会处理"."和"..")
System.out.println(new File("").getCanonicalPath());
// 7.获取项目绝对路径(不会处理"."和"..")
System.out.println(new File("").getAbsolutePath());
//8.user.dir
System.out.println(System.getProperty("user.dir"));

img

二、操作文件的三种方式

1、ClassPath

读取resources下配置文件【文件只能为Properties、xml、JSON


//读取 ClassPath 下的文件信息
//1、类加载器
InputStream resourceAsStream = DaoFactory.class.getClassLoader().getResourceAsStream("data.properties");
//2、当前线程加载器
lassLoader classLoader = Thread.currentThread().getContextClassLoader();
InputStream is = classLoader.getResourceAsStream(path);

2、FileSystem

指定文件路径的方式读取文件信息,读取resources下static文件夹中的文件


String path = Thread.currentThread().getContextClassLoader().getResource("static/internal.csv").getPath();
File file = new File(path);

3、UrlResource

通过 Http 的方式读取云服务的文件,我们也可以把配置文件放到 GitHub 或者 gitee 上。


URLConnection con = this.url.openConnection();
InputStream inputStream = con.getInputStream();
String content = IoUtil.readUtf8(inputStream);
System.out.println(content);

到此这篇关于spring  boot操作文件的几种方式的文章就介绍到这了,更多相关Spring Boot操作文件内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

--结束END--

本文标题: 详解Spring boot操作文件的多种方式

本文链接: https://lsjlt.com/news/156101.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作