zoukankan      html  css  js  c++  java
  • (CSDN迁移) Java路径获取

    package unit02;
    
    /**
     * 
     * @time 2014年9月18日 下午10:29:48
     * @porject ThinkingInJava
     * @author Kiwi
     */
    public class Test03 {
    	
    	private String getPathByPoint() {
    		return this.getClass().getClassLoader().getResource(".").getPath();
    	}
    	
    	private String getPathByNothing() {
    		return this.getClass().getClassLoader().getResource("").getPath();
    	}
    	
    	private String getResourcePath() {
    		return this.getClass().getResource("").getPath();
    	}
    	
    	private String getResourcePathByPoint() {
    		return this.getClass().getResource(".").getPath();
    	}
    	
    	private String getThreadPath() {
    		return Thread.currentThread().getContextClassLoader().getResource("").getPath();
    	}
    	
    	private String getThreadPathByPoint() {
    		return Thread.currentThread().getContextClassLoader().getResource(".").getPath();
    	}
    
    	public static void main(String[] args) {
    		Test03 test03 = new Test03();
    		System.out.println("this.getClass().getClassLoader().getResource(".").getPath() = 
    " + test03.getPathByPoint());
    		System.out.println("this.getClass().getClassLoader().getResource("").getPath() = 
    " + test03.getPathByNothing());
    		
    		System.out.println("this.getClass().getResource("").getPath() = 
    " + test03.getResourcePath());
    		System.out.println("this.getClass().getResource(".").getPath() = 
    " + test03.getResourcePathByPoint());
    		
    		System.out.println("Thread.currentThread().getContextClassLoader().getResource("").getPath() = 
    " + test03.getThreadPath());
    		System.out.println("Thread.currentThread().getContextClassLoader().getResource(".").getPath() = 
    " + test03.getThreadPathByPoint());
    
    		System.out.println(System.getProperty("user.dir"));
    		System.out.println(System.getProperty("java.class.path"));
    	}
    
    }
    

    运行结果:(注:测试环境:Eclipse; 项目名称:ThinkingInJava;包名称:unit02)

    this.getClass().getClassLoader().getResource(".").getPath() = 
    /F:/java/java_workspace/ThinkingInJava/bin/
    this.getClass().getClassLoader().getResource("").getPath() = 
    /F:/java/java_workspace/ThinkingInJava/bin/
    this.getClass().getResource("").getPath() = 
    /F:/java/java_workspace/ThinkingInJava/bin/unit02/
    this.getClass().getResource(".").getPath() = 
    /F:/java/java_workspace/ThinkingInJava/bin/unit02/
    Thread.currentThread().getContextClassLoader().getResource("").getPath() = 
    /F:/java/java_workspace/ThinkingInJava/bin/
    Thread.currentThread().getContextClassLoader().getResource(".").getPath() = 
    /F:/java/java_workspace/ThinkingInJava/bin/
    F:javajava_workspaceThinkingInJava
    F:javajava_workspaceThinkingInJavain;F:javajava_workspacecodemindview.jar
    
  • 相关阅读:
    1分钟去除word文档编辑限制密码
    建行信用卡微信查询
    明目地黄丸
    发动机启停技术
    ORA-12170: TNS: 连接超时
    螃蟹放进冰箱冷冻保存前,要注意什么呢?
    螃 蟹要蒸多久
    总胆固醇偏高的注意措施及治疗方法
    codeforces 375D . Tree and Queries 启发式合并 || dfs序+莫队
    codeforces 374D. Inna and Sequence 线段树
  • 原文地址:https://www.cnblogs.com/AbelZone/p/10062432.html
Copyright © 2011-2022 走看看