zoukankan      html  css  js  c++  java
  • java上传文件获取跟目录的办法

    在java中获得文件的路径在我们做上传文件操作时是不可避免的。
    web 上运行
    1:
    this.getClass().getClassLoader().getResource("/").getPath();
    this.getClass().getClassLoader().getResource("").getPath();  得到的是 ClassPath的绝对URI路径。
    如:/D:/jboss-4.2.2.GA/server/default/deploy/hp.war/WEB-INF/classes/
    System.getProperty("user.dir");
    this.getClass().getClassLoader().getResource(".").getPath();    得到的是 项目的绝对路径。
    如:/D:/jboss-4.2.2.GA/server/default/deploy/hp.war

    2:
    this.getClass().getResource("/").getPath();
    this.getClass().getResource("").getPath(); 得到的是当前类文件的URI目录。不包括自己!
    如:/D:/jboss-4.2.2.GA/server/default/deploy/hp.war/WEB-INF/classes/com/jebel/helper/
    this.getClass().getResource(".").getPath();   X 不 能运行

    3:
    Thread.currentThread().getContextClassLoader().getResource("/").getPath()
    Thread.currentThread().getContextClassLoader().getResource("").getPath()  得到的是 ClassPath的绝对URI路径。
    如:/D:/jboss-4.2.2.GA/server/default/deploy/hp.war/WEB-INF/classes/
    Thread.currentThread().getContextClassLoader().getResource(".").getPath()  得到的是 项目的绝对路径。
    如:/D:/jboss-4.2.2.GA/server/default/deploy/hp.war

    在本地运行中
    1:
    this.getClass().getClassLoader().getResource("").getPath();
    this.getClass().getClassLoader().getResource(".").getPath();   得到的是 ClassPath的绝对URI路径。
    如:/D:/myProjects/hp/WebRoot/WEB-INF/classes
    this.getClass().getClassLoader().getResource(".").getPath();  X 不 能运行
    2:
    this.getClass().getResource("").getPath();
    this.getClass().getResource(".").getPath(); 得到的是当前类文件的URI目录。不包括自己!
    如:/D:/myProjects/hp/WebRoot/WEB-INF/classes/com/jebel/helper/
    /D:/myProjects/hp/WebRoot/WEB-INF/classes/    得到的是 ClassPath的绝对URI路径。
    如:/D:/myProjects/hp/WebRoot/WEB-INF/classes
    3:

    Thread.currentThread().getContextClassLoader().getResource(".").getPath() Thread.currentThread().getContextClassLoader().getResource("").getPath() 得到的是 ClassPath的绝对URI路径。。 如:/D:/myProjects/hp/WebRoot/WEB-INF/classes Thread.currentThread().getContextClassLoader().getResource("/").getPath()    X 不 能运行

     

    DEMO下载地址:https://dwz.cn/fgXtRtnu 

  • 相关阅读:
    Haskell 差点儿无痛苦上手指南
    HighCharts 具体使用及API文档说明
    又一道软通动力7K月薪面试题——银行业务调度系统
    [AngularJS + Webpack] require directives
    [AngularJS + Webpack] Using Webpack for angularjs
    [Whole Web] [AngularJS] Localize your AngularJS Application with angular-localization
    [React] React Fundamentals: Mixins
    [React] React Fundamentals: Component Lifecycle
    [React ] React Fundamentals: Component Lifecycle
    [React] React Fundamentals: Component Lifecycle
  • 原文地址:https://www.cnblogs.com/xproer/p/10790839.html
Copyright © 2011-2022 走看看