zoukankan      html  css  js  c++  java
  • 获取Java程序运行的路径 | 获取当前jar包的路径

    经过试验,不管是否是Jar包,不管是否是Tomcat部署,以下三个方法均可实现。

     

    package test;

     

    public class MyPath {

        public static String getProjectPath() {

     

           java.net.URL url = MyPath.class.getProtectionDomain().getCodeSource().getLocation();

           String filePath = null;

           try {

               filePath = java.net.URLDecoder.decode(url.getPath(), "utf-8");

           } catch (Exception e) {

               e.printStackTrace();

           }

        if (filePath.endsWith(".jar"))

           filePath = filePath.substring(0, filePath.lastIndexOf("/") + 1);

        java.io.File file = new java.io.File(filePath);

        filePath = file.getAbsolutePath();

        return filePath;

    }

       

        public static String getRealPath() {

           String realPath = MyPath.class.getClassLoader().getResource("").getFile();

           java.io.File file = new java.io.File(realPath);

           realPath = file.getAbsolutePath();

           try {

               realPath = java.net.URLDecoder.decode(realPath, "utf-8");

           } catch (Exception e) {

               e.printStackTrace();

           }

          

           return realPath;

        }

       

        public static String getAppPath(Class<?> cls){ 

           //检查用户传入的参数是否为空 

            if(cls==null)  

            throw new java.lang.IllegalArgumentException("参数不能为空!"); 

           

            ClassLoader loader=cls.getClassLoader(); 

            //获得类的全名,包括包名 

            String clsName=cls.getName();

            //此处简单判定是否是Java基础类库,防止用户传入JDK内置的类库 

            if(clsName.startsWith("java.")||clsName.startsWith("javax.")) {

            throw new java.lang.IllegalArgumentException("不要传送系统类!");

            }

            //将类的class文件全名改为路径形式

            String clsPath= clsName.replace(".", "/")+".class"; 

     

            //调用ClassLoader的getResource方法,传入包含路径信息的类文件名 

            java.net.URL url =loader.getResource(clsPath); 

            //从URL对象中获取路径信息 

            String realPath=url.getPath(); 

            //去掉路径信息中的协议名"file:" 

            int pos=realPath.indexOf("file:"); 

            if(pos>-1) {

            realPath=realPath.substring(pos+5); 

            }

            //去掉路径信息最后包含类文件信息的部分,得到类所在的路径 

            pos=realPath.indexOf(clsPath); 

            realPath=realPath.substring(0,pos-1); 

            //如果类文件被打包到JAR等文件中时,去掉对应的JAR等打包文件名 

            if(realPath.endsWith("!")) {

            realPath=realPath.substring(0,realPath.lastIndexOf("/"));

            }

            java.io.File file = new java.io.File(realPath);

            realPath = file.getAbsolutePath();

          

            try

            realPath=java.net.URLDecoder.decode(realPath,"utf-8"); 

            }catch(Exception e){

            throw new RuntimeException(e);

            } 

            return realPath; 

        }//getAppPath定义结束 

    }

    使用Jar包,在Tomcat的运行结果如下:

    ProjectPath: D:\J2EE\Tomcat 6.0\webapps\MyService1WebP\WEB-INF\lib

    RealPath: D:\J2EE\Tomcat 6.0\webapps\MyService1WebP\WEB-INF\classes

    Apppath: D:\J2EE\Tomcat 6.0\webapps\MyService1WebP\WEB-INF\classes

  • 相关阅读:
    【转载】数据杂谈
    【转载】行走在网格之间:微博用户关系模型
    【转载】TalkingData首席金融行业专家鲍忠铁:18亿数据解读移动互联网
    【转载】大数据架构和模式
    【转载】Deep Learning(深度学习)学习笔记整理
    【转载】如何组建一支优秀的数据分析团队?
    【转载】Hadoop可视化分析利器之Hue
    【转载】关于烂代码的那些事
    【转载】6个用好大数据的秘诀
    【转载】如何一步步从数据产品菜鸟走到骨干数据产品
  • 原文地址:https://www.cnblogs.com/snailrun/p/2657023.html
Copyright © 2011-2022 走看看