博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java读取resource文件/路径的几种方式
阅读量:5138 次
发布时间:2019-06-13

本文共 941 字,大约阅读时间需要 3 分钟。

方式一:

String fileName = this.getClass().getClassLoader().getResource("文件名").getPath();//获取文件路径

String fileUtl = this.getClass().getResource("文件名").getFile();
(在项目打成jar后的情况下getPath()与getFile()返回参数及用法的基本相同具体差异大研究)
示例路径结果:/E:/idea_work/sofn-qry-web/target/classes/CityJson.js

方式二:

File directory = new File("");//参数为空

String courseFile = directory.getCanonicalPath()//标准的路径 ;
String author =directory.getAbsolutePath()//绝对路径;
(在jdk1.1后就有了此方法获取文件路径的方式存在了)
示例路径结果:E:\idea_work\sofn-qry-web

方式三:

java.net.URL uri = this.getClass().getResource("/");

(获取到Class文件存放的路径)
示例路径结果:file:/E:/idea_work/sofn-qry-web/target/test-classes/

String property =System.getProperty("user.dir");

方式四:

String property =System.getProperty("user.dir");

(此方法可以得到该工程项目所有文件的相关路径及环境配置信息)
示例输出结果:

---------------------
作者:N先生
来源:CSDN
原文:https://blog.csdn.net/oschina_40188932/article/details/78833754
版权声明:本文为博主原创文章,转载请附上博文链接!

转载于:https://www.cnblogs.com/AryaZ/p/10026251.html

你可能感兴趣的文章
django迁移数据库错误
查看>>
Data truncation: Out of range value for column 'Quality' at row 1
查看>>
字符串处理
查看>>
HtmlUnitDriver 网页内容动态抓取
查看>>
ad logon hour
查看>>
罗马数字与阿拉伯数字转换
查看>>
Eclipse 反编译之 JadClipse
查看>>
距离公式汇总以及Python实现
查看>>
Linux内核态、用户态简介与IntelCPU特权级别--Ring0-3
查看>>
第23月第24天 git命令 .git-credentials git rm --cached git stash clear
查看>>
java SE :标准输入/输出
查看>>
[ JAVA编程 ] double类型计算精度丢失问题及解决方法
查看>>
好玩的-记最近玩的几个经典ipad ios游戏
查看>>
Sql Server 中由数字转换为指定长度的字符串
查看>>
tmux的简单快捷键
查看>>
[Swift]LeetCode922.按奇偶排序数组 II | Sort Array By Parity II
查看>>
php match_model的简单使用
查看>>
Vue_(组件通讯)子组件向父组件传值
查看>>
STM32单片机使用注意事项
查看>>
移动开发平台-应用之星app制作教程
查看>>