java 文件目录_Java 文件路径

绝对路径

一种比较通用的一种路径。即使代码换位置了,这样编写仍然是通用的。

注意:使用以下通用方式的前提是:这个文件必须在类路径下。

什么类路径下?方式在src下的都是类路径下。【记住它】

src是类的根路径。

Thread.currentThread() 当前线程对象

getContextClassLoader() 是线程对象的方法,可以获取到当前线程的类加载器对象。

getResource() 【获取资源】这是类加载器对象的方法,当前线程的类加载器默认从类的根路径下加载资源。

直接以流的形式返回。

java.util包下提供了一个资源绑定器,便于获取属性配置文件中的内容。

使用以下这种方式的时候,属性配置文件xxx.properties必须放到类路径下。

packagecom.bjpowernode.java.reflect;importjava.io.FileReader;/*研究一下文件路径的问题。

怎么获取一个文件的绝对路径。以下讲解的这种方式是通用的。但前提是:文件需要在类路径下。才能用这种方式。*/

public classAboutPath {public static void main(String[] args) throwsException{//这种方式的路径缺点是:移植性差,在IDEA中默认的当前路径是project的根。//这个代码假设离开了IDEA,换到了其它位置,可能当前路径就不是project的根了,这时这个路径就无效了。//FileReader reader = new FileReader("chapter25/classinfo2.properties");

/*解释:

Thread.currentThread() 当前线程对象

getContextClassLoader() 是线程对象的方法,可以获取到当前线程的类加载器对象。

getResource() 【获取资源】这是类加载器对象的方法,当前线程的类加载器默认从类的根路径下加载资源。*/String path=Thread.currentThread().getContextClassLoader()

.getResource("classinfo2.properties").getPath(); //这种方式获取文件绝对路径是通用的。//采用以上的代码可以拿到一个文件的绝对路径。///C:/Users/Administrator/IdeaProjects/javase/out/production/chapter25/classinfo2.properties

System.out.println(path);//获取db.properties文件的绝对路径(从类的根路径下作为起点开始)

String path2 =Thread.currentThread().getContextClassLoader()

.getResource("com/bjpowernode/java/bean/db.properties").getPath();

System.out.println(path2);

}

}

packagecom.bjpowernode.java.reflect;importjava.io.FileReader;importjava.io.InputStream;importjava.util.Properties;public classIoPropertiesTest {public static void main(String[] args) throwsException{//获取一个文件的绝对路径了!!!!!

/*String path = Thread.currentThread().getContextClassLoader()

.getResource("classinfo2.properties").getPath();

FileReader reader = new FileReader(path);*/

//直接以流的形式返回。

InputStream reader =Thread.currentThread().getContextClassLoader()

.getResourceAsStream("classinfo2.properties");

Properties pro= newProperties();

pro.load(reader);

reader.close();//通过key获取value

String className = pro.getProperty("className");

System.out.println(className);

}

}

packagecom.bjpowernode.java.reflect;importjava.util.ResourceBundle;/*java.util包下提供了一个资源绑定器,便于获取属性配置文件中的内容。

使用以下这种方式的时候,属性配置文件xxx.properties必须放到类路径下。*/

public classResourceBundleTest {public static voidmain(String[] args) {//资源绑定器,只能绑定xxx.properties文件。并且这个文件必须在类路径下。文件扩展名也必须是properties//并且在写路径的时候,路径后面的扩展名不能写。//ResourceBundle bundle = ResourceBundle.getBundle("classinfo2");

ResourceBundle bundle= ResourceBundle.getBundle("com/bjpowernode/java/bean/db");

String className= bundle.getString("className");

System.out.println(className);

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值