zoukankan      html  css  js  c++  java
  • Java处理文件路径的类

    转帖说明:非常的好用,方便在进行Velocity和FreeMarker生成文件时候处理要生成文件的路径问题

    package util;

    import java.io.File;
    import java.io.IOException;
    import java.net.URI;
    import java.net.URISyntaxException;
     
    /** *//**
    * @author <a href="mailto:maryang@live.cn" mce_href="Maryangmailto:maryang@live.cn">Maryang</a>
    * @version $Revision: 1.0 $
    * 这个类提供了一些根据类的class文件位置来定位的方法。
    */
    public class PathUtil {
       
        /** *//**
         * 获取一个Class的绝对路径
         * @param clazz Class对象
         * @return Class的绝对路径
         */
        public static String getPathByClass(Class clazz){
            String path = null;
            try {
                URI uri = clazz.getResource("").toURI();
                File file = new File(uri);
                path = file.getCanonicalPath();
            } catch (URISyntaxException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }
            return path;
        }
       
        /** *//**
         * 获取一个文件相对于一个Class相对的绝对路径
         * @param clazz Class对象
         * @param relativePath Class对象的相对路径
         * @return 文件绝对路径
         */
        public static String getFilePathByClass(Class clazz,String relativePath){
            String filePath = null;
            String clazzPath = getPathByClass(clazz);
            StringBuffer sbPath = new StringBuffer(clazzPath);
            sbPath.append(File.separator);
            sbPath.append(relativePath);
            File file = new File(sbPath.toString());
            try {
                filePath = file.getCanonicalPath();
            } catch (IOException e) {
                e.printStackTrace();
            }
            return filePath;
        }
        public static void main(String[] args) {
            try {
                System.out.println(getPathByClass(PathUtil.class));
               System.out.println(getFilePathByClass(PathUtil.class,"../../images/logo.gif"));
               System.out.println(getFilePathByClass(PathUtil.class,"../../../"));
              
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }

    /*

    E:/MyWorkspace/FreeMarkerTest/WebRoot/WEB-INF/classes/util
    E:/MyWorkspace/FreeMarkerTest/WebRoot/WEB-INF/images/logo.gif
    E:/MyWorkspace/FreeMarkerTest/WebRoot

    */

  • 相关阅读:
    OS__信号量(semaphore)PV操作
    c++ _宏与内联函数
    ubuntu_ root change to user
    联想Y450在Ubuntu下调节屏幕亮度
    AI—家庭组机器人平台环境配置,高级人工智能实验总结
    如何在ubuntu下使用windows下的程序(eg: .exe)
    Python_XML的三种解析方法
    Python学习资源汇总
    转:Emmet 学习之路
    sql入门
  • 原文地址:https://www.cnblogs.com/xqf222/p/3306782.html
Copyright © 2011-2022 走看看