关于文件路径的获取

关于文件路径的获取类, 备忘一下

public class PathUtils {
    private static Log logger = LogFactory.getLog(PathUtils.class);

    /**
     * 针对文件跟class在目录下, 根据文件名取得文件绝对路径
     * 
     * @param clazz
     * @param fileName
     * @return
     */
    public static String getAbsolutePath(Class<?> clazz, String fileName) {
        try {
            return clazz.getResource(fileName).getFile();
        } catch (Exception e) {
            throw new FileNoFoundException(log(fileName, e));
        }
    }

    private static String log(String fileName, Exception e) {
        String message = "获取文件失败!fileName=" + fileName;
        logger.warn(message, e);
        return message;
    }

    /**
     * 针对文件在class根目录下, 根据文件名取得文件绝对路径
     * 
     * @param clazz
     * @param fileName
     * @return
     */
    public static String getAbsolutePath(String fileName) {
        try {
            return PathUtils.class.getClassLoader().getResource(fileName).getFile();
        } catch (Exception e) {
            String message = log(fileName, e);
            throw new FileNoFoundException(message);
        }
    }
}
 

你可能感兴趣的:(招聘)