Java 文件路径
绝对路径
一种比较通用的一种路径。即使代码换位置了,这样编写仍然是通用的。
注意:使用以下通用方式的前提是:这个文件必须在类路径下。
什么类路径下?方式在src下的都是类路径下。【记住它】
src是类的根路径。
Thread.currentThread() 当前线程对象
getContextClassLoader() 是线程对象的方法,可以获取到当前线程的类加载器对象。
getResource() 【获取资源】这是类加载器对象的方法,当前线程的类加载器默认从类的根路径下加载资源。
直接以流的形式返回。
java.util包下提供了一个资源绑定器,便于获取属性配置文件中的内容。
使用以下这种方式的时候,属性配置文件xxx.properties必须放到类路径下。
package com.bjpowernode.java.reflect; import java.io.FileReader; /* 研究一下文件路径的问题。 怎么获取一个文件的绝对路径。以下讲解的这种方式是通用的。但前提是:文件需要在类路径下。才能用这种方式。 */ public class AboutPath { public static void main(String[] args) throws Exception{ // 这种方式的路径缺点是:移植性差,在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); } }
package com.bjpowernode.java.reflect; import java.io.FileReader; import java.io.InputStream; import java.util.Properties; public class IoPropertiesTest { public static void main(String[] args) throws Exception{ // 获取一个文件的绝对路径了!!!!! /*String path = Thread.currentThread().getContextClassLoader() .getResource("classinfo2.properties").getPath(); FileReader reader = new FileReader(path);*/ // 直接以流的形式返回。 InputStream reader = Thread.currentThread().getContextClassLoader() .getResourceAsStream("classinfo2.properties"); Properties pro = new Properties(); pro.load(reader); reader.close(); // 通过key获取value String className = pro.getProperty("className"); System.out.println(className); } }
package com.bjpowernode.java.reflect; import java.util.ResourceBundle; /* java.util包下提供了一个资源绑定器,便于获取属性配置文件中的内容。 使用以下这种方式的时候,属性配置文件xxx.properties必须放到类路径下。 */ public class ResourceBundleTest { public static void main(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); } }