eclipse环境下,我想将一个txt文件加到项目中,并且可以用File类的方式读取,如何做到?
展开全部
你可以在你要建的项目中直接添加一个txt文件,选中项目放置txt文件位置点右键->file->输入名称.txt
然后通过
String url = UserRolePriServiceImpl.class.getClass()
.getResource("/").getPath().replaceAll("%20", " ");
System.out.println(url);
String path = url.substring(0, url.indexOf("web"))
+ "web/src/main/webapp/WEB-INF/data/jdbc.properties";
如果是在类中需要读取,通过以上的方式,找到他在项目中的相对位置,然后用new FileInputStream(path)去读取数据即可。
然后通过
String url = UserRolePriServiceImpl.class.getClass()
.getResource("/").getPath().replaceAll("%20", " ");
System.out.println(url);
String path = url.substring(0, url.indexOf("web"))
+ "web/src/main/webapp/WEB-INF/data/jdbc.properties";
如果是在类中需要读取,通过以上的方式,找到他在项目中的相对位置,然后用new FileInputStream(path)去读取数据即可。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询