maven项目读取resource中的文件,读取txt文件的内容

maven项目中,读取存放在src/main/resources中的文件my.txt
项目结构如图:
在这里插入图片描述

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStreamReader;
import java.net.URL;
import com.redkite.sys.web.UserController;

public class ReadFile {
	//字符编码
	private static String ENCODING = "GBK";
	public static void main(String[] args) throws Exception{
		InputStreamReader read = null;
		//这个 ReadFile 换成其他包中的其他类也可以,就比如换成 UserController 也是一样的
		String filePath = ReadFile.class.getClassLoader().getResource("my.txt").getPath();
		
		/*	通过类加载器获取资源文件的URL
		*	URL url = getClass().getClassLoader().getResource("my.txt");
		*	String filePath = url.getPath();
		*	其实这个和上面那个方法是一样的,因为:ReadFile.class.getClassLoader().getResource("my.txt")的返回值就是URL。
		*/

		File file = new File(filePath);
		try {
			read = new InputStreamReader(new FileInputStream(file),ENCODING);
			//文件流是否存在
			if(file.isFile() && file.exists()){      
				@SuppressWarnings("resource")
				BufferedReader bufferedReader = new BufferedReader(read);
				String txt = null;
				while((txt = bufferedReader.readLine()) != null){
					System.out.println(txt);
			    }
			}else{
				throw new Exception("文件不存在");
			}
		} catch (Exception e) {
			throw e;
		}finally{
			//关闭文件流
			read.close();
		}
	}
}

输出的结果:
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

符华-

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值