java中 resource_Java从Resource中读取文本文件

本文介绍如何在Java项目中设置Resource文件夹并读取其中的静态资源。首先详细讲解了如何在IDE中配置资源文件夹,并提供了IntelliJ IDEA的具体步骤。接着介绍了如何使用ClassLoader获取资源文件的实际路径,给出了具体的代码实现。
摘要由CSDN通过智能技术生成

1.设置Resource文件夹

Java是允许开发者将静态资源打到Jar包中,在运行时读取。开发者可以在文件夹“src/main/”下新建一个文件夹"resources",并且在IDE中将这个文件夹设置为资源文件夹,拿IntelliJ Idea为例,在项目设置资源文件夹的过程如图:

68f3b17d2436

设置静态资源文件夹

1).点击项目属性编辑按钮,进入项目属性编辑页;

2).点击Modules编辑子页面;

3).选择对应的项目;

4).选择对应的文件夹;

5).点击Resources按钮。

文件夹设置好了之后,就可以往这个文件夹里面复制项目中需要用到的文件了。

2.读取Resource文件夹中的内容

我们把文本文件保存到Resources以后可以使用ClassLoader来获取Resource文件所在的实际Path:

public class ResourceTest{

public static File getResourceFileByStatic(String path){

String filePath = ResourceTest.class.getClassLoader().getResource(path).getFile();

File resouce = new File();

return resouce;

}

}

下面是一段可用的从Resource读取文本文件到字符串的代码供大家参考:

public class ResourceUtil {

public static String readResource(String path) throws FileNotFoundException{

Reader reader = null;

try {

reader = getResourceReader(path);

if (reader == null) {

throw new FileNotFoundException("no file found" + path);

}

Scanner s = new Scanner(reader).useDelimiter("\\A");

return s.hasNext() ? s.next() : "";

}

finally {

if(null != reader){

try {

reader.close();

}

catch (IOException ex2){

throw new RuntimeException(ex2);

}

}

}

}

public static Reader getResourceReader(String name) throws FileNotFoundException{

InputStream is = null;

try {

is = ResourceUtil.class.getClassLoader().getResourceAsStream(getCPResourcePath(name));

if (is == null) {

is = new FileInputStream(new File(name));

}

return new InputStreamReader(is);

}

catch (FileNotFoundException ex){

if(null != is){

try {

is.close();

}

catch (IOException ex2){

throw new RuntimeException(ex2);

}

}

throw ex;

}

}

public static String getCPResourcePath(String name) {

if (!"/".equals(File.separator)) {

return name.replaceAll(Pattern.quote(File.separator), "/");

}

return name;

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值