标签:文件 track mod ack 推荐 web etc data- getc
//生成一个文件对象: File file = new File(getClass().getClassLoader().getResource("test.xml").getPath()); //直接得到一个输入流: InputStream in = getClass().getClassLoader().getResourceAsStream("test.xml"); //在当前线程获取--这种方法不大稳定 //String path = Thread.currentThread().getContextClassLoader().getResource("").getPath()+"/test.xml"; //推荐使用此方法 String path = getClass().getClassLoader().getResource("test.xml").getPath();
Java web 项目读取src或者tomcat下class文件夹下的xml文件或者properties文件
标签:文件 track mod ack 推荐 web etc data- getc
原文地址:http://www.cnblogs.com/wzjhoutai/p/7327315.html