2014.09.22 获取项目所在根目录下的文件(/WEB-INF/下的文件)

 原理:通过class的getResource方法来获取class所在的目录,经过简单处理后达到获取目标文件目录的目的。

package com.cnksi.webrootpath;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.net.URISyntaxException;
import java.util.Properties;

public class PropertiesUitl {
	public static void main(String[] args) {
		
		System.out.println(getWebRootPath());			// 根路径

		System.out.println(getProperties("web.xml"));	// 获取指定文件的内容
	}
	/**
	 * 获取WEB-INF下的指定文件
	 * @param fileName
	 * @return
	 */
	public static Properties getProperties(String fileName) {
		
		Properties prop = new Properties();		// 从配置文件中获取信息
		
		try {
			// 获取当前类加载的根目录,如:E:/project/jfinal_demo/WebRoot/WEB-INF/
			String path = PropertiesUitl.getWebInfPath() + File.separator + fileName;
			
			FileInputStream fis = new FileInputStream(new File(path));		// 把文件读入文件输入流,存入内存中
				
			prop.load(fis);						//加载文件流的属性   
			
		} catch (IOException e) {
			e.printStackTrace();
		}
		return prop;
	}

	/**
	 * 获取项目的WEB-INF目录
	 * @return
	 */
	private static String getWebInfPath() {
		return getWebRootPath() + File.separator + "WEB-INF";
	}
	
	/**
	 * @return E:/project/jfinal_demo/WebRoot;
	 * 获取项目的WebRoot目录
	 * 原理:通过class的getResource方法来获取class所在的目录;
	 * 此处:String.class.getResource("/") 是返回class文件(此处为String对应的class文件)所在的顶级目录, 
	 * 即:/E:/project/jfinal_demo/build/classes/;
	 */
	public static String getWebRootPath() {
		try {

			String path = String.class.getResource("/").toURI().getPath();
			
			String project_path = new File(path).getParentFile().getParentFile().getCanonicalPath();
			
			return project_path + File.separator + "WebRoot";
			
		} catch (URISyntaxException e) { e.printStackTrace();
		
		} catch (IOException e) { e.printStackTrace(); }
		
		return "";
	}
	
	/**
	 * 三种获取路径方式的不同结果:getPath、getAbsolutePath、getCanonicalPath
	 * @throws IOException
	 */
	public void getPath() throws IOException {
		 {
		     System.out.println("------默认相对路径,取得路径不同-----");
		     File f = new File("..\\src\\file");
		     System.out.println(f.getPath());
		     System.out.println(f.getAbsolutePath());
		     System.out.println(f.getCanonicalPath());
		     System.out.println("------默认相对路径,取得路径不同-----");
		     File f2 = new File(".\\src\\file");
		     System.out.println(f2.getPath());
		     System.out.println(f2.getAbsolutePath());
		     System.out.println(f2.getCanonicalPath()); 
		     System.out.println("------默认绝对路径,取得路径相同-----");
		     File f3 = new File("C:\\src\\file");
		     System.out.println(f3.getPath());
		     System.out.println(f3.getAbsolutePath());
		     System.out.println(f3.getCanonicalPath()); 
		      
		//   执行结果为:
		//   ------默认相对路径,取得路径不同-----
		//   ..\src\file
		//   C:\workspace\Tip\..\src\file
		//   C:\workspace\src\file
		//   ------默认相对路径,取得路径不同-----
		//   .\src\file
		//   C:\workspace\Tip\.\src\file
		//   C:\workspace\Tip\src\file
		//   ------默认绝对路径,取得路径相同-----
		//   C:\src\file
		//   C:\src\file
		//   C:\src\file
		//   
		//   比较可以得到
		//   getPath()返回的是构造方法里的路径,不做任何处理
		//   getAbsolutePath()返回的是 user.dir+getPath(),也就是执行路径加上构造方法中的路径
		//   getCanonicalPath()返回的是将符号完全解析的路径,也就是全路径
		 }
	}
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

未来的我比现在的我更优秀

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

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

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

打赏作者

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

抵扣说明:

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

余额充值