转自:http://blog.csdn.net/appleprince88/article/details/11599805
由于经常需要获取文件的路径,但是比较容易忘记,每次需要总需要查询,现在把这些方式写下来,方便自己的时候也方便大家了,如果大家在下面的方法遇到什么问题,可以留言。
一.Java文件获取路径方式:
各种获取方式如示例代码所示:
- package first.second;
- import java.io.File;
- public class GetPath {
- public static void getPath()
- {
- //方式一
- System.out.println(System.getProperty("user.dir"));
- //方式二
- File directory = new File("");//设定为当前文件夹
- try{
- System.out.println(directory.getCanonicalPath());//获取标准的路径
- System.out.println(directory.getAbsolutePath());//获取绝对路径
- }catch(Exception e)
- {
- e.printStackTrace();
- }
- //方式三
- System.out.println(GetPath.class.getResource("/"));
- System.out.println(GetPath.class.getResource(""));
- //方式4
- System.out.println(GetPath.class.getClassLoader().getResource(""));
- System.out.println(GetPath.class.getClassLoader().getResource("source.xml"));
- }
- /**
- * @param args
- */
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- GetPath.getPath();
- }
- }
其在java project项目下输出如下:
- 方式一
- D:\eclipse\juno_workspace\Test
- 方式二
- D:\eclipse\juno_workspace\Test
- D:\eclipse\juno_workspace\Test
- 方式三
- file:/D:/eclipse/juno_workspace/Test/bin/
- file:/D:/eclipse/juno_workspace/Test/bin/first/second/
- 方式四
- file:/D:/eclipse/juno_workspace/Test/bin/
- file:/D:/eclipse/juno_workspace/Test/bin/source.xml
在Web project输出如下:
- 方式一
- D:\apache-tomcat-6.0.36\bin
- 方式二
- D:\apache-tomcat-6.0.36\bin
- D:\apache-tomcat-6.0.36\bin
- 方式三
- file:/D:/apache-tomcat-6.0.36/webapps/ConsisPro/WEB-INF/classes/
- file:/D:/apache-tomcat-6.0.36/webapps/ConsisPro/WEB-INF/classes/first/second/
- 方式四
- file:/D:/apache-tomcat-6.0.36/webapps/ConsisPro/WEB-INF/classes/
- file:/D:/apache-tomcat-6.0.36/webapps/ConsisPro/WEB-INF/classes/source.xml
说明一下,实验类是放在first.second包下的,source.xml是src文件下的一个文件。在java project测试的项目名是Test,在web project测试的项目名是ConsisPro,还有就是 web project项目测试时运行在tomcat中,通过调用实验类GetPath产生的运行结果。
从上面我们可以看出方式一和方式二在java project项目下是获取的项目根目录,而在web project项目下获取的是tomcat的bin目录。
方式三当使用“/”时获取的是类编译后所在的目录,当不使用“/”是获取的是编译好类所在的目录,也就是前面加“/”产生的目录加上相应的包目录。
方式四中第一个获取的也是类编译后的目录,第二个获取的是也就是我们放在src目录底下的文件,编译后放在类编译后的目录底下,当我们需要获取放在Src目录底下的文件时,用这个方式很方便。
二.获取文件的一些具体情况下的方式
1.获取你存放在src目录下的文件,一般为配置文件,如下图1所示。推荐使用方式四的中的第二个方式,示例代码如下:
图1
- /* @param name 文件名 不包含路径
- */
- public static String getSrcPath(String name)
- {
- String result=null;
- URL urlpath = GetPath.class.getClassLoader().getResource(name);
- String path=urlpath.toString();
- //remove the head "file:",if it exists
- if(path.startsWith("file"))
- {
- path=path.substring(5);
- }
- path.replace("/", File.separator);
- result=path;
- return result;
- }
2.在java project获取与src文件夹并列的文件下的文件,如下图2所示。这种情况推荐使用方式一和方式二,下面以第一种方式给出示例代码:
图2
- // filename 文件名 不包含路径
- // ...args 文件夹名 可以输入多个文件夹名参数
- public static String getParallelPath(String filename,String ...args)
- {
- String pre=System.getProperty("user.dir");
- String path=pre;
- for(String arg:args)
- {
- path+=File.separator+arg;
- }
- path+=File.separator+filename;
- if(path.startsWith("file"))
- {
- path=path.substring(5);
- }
- path.replace("/", File.separator);
- return path;
- }
3.如果希望无论在java project或者web project项目使用类包底下的一些文件,如下图3所示。这种情况可以使用方式三中的第二种方式,使用示例代码如下:
图3
- public static String getPackagePath(String filename)
- {
- String result=null;
- URL urlpath=GetPath.class.getResource("");
- String path=urlpath.toString();
- if(path.startsWith("file"))
- {
- path=path.substring(5);
- }
- path.replace("/", File.separator);
- result=path+filename;
- return result;
- }
Tips:这个方法要在和要获取的文件在同一个包中才可以,在不同包中,需要使用其它方式
4.当在web project项目下想获取WebRoot目录底下自定义目录文件下的文件,如下图4所示。这种情况推荐方式三和方式四,进行一些操作,下面是一个示例代码:
图4
- //获取WebRoot目录
- public static String getWebRootPath()
- {
- URL urlpath=GetPath.class.getResource("");
- String path=urlpath.toString();
- if(path.startsWith("file"))
- {
- path=path.substring(5);
- }
- if(path.indexOf("WEB-INF")>0)
- {
- path=path.substring(0,path.indexOf("WEB-INF")-1);
- }
- path.replace("/", File.separator);
- return path;
- }
- //webroot WebRoot目录
- //filename 文件名
- //...args 文件名所在文件夹,多个参数输入
- public static String getWebRootFilepath(String webroot,String filename,String ...args)
- {
- String pre=webroot;
- String path=pre;
- for(String arg:args)
- {
- path+=File.separator+arg;
- }
- path+=File.separator+filename;
- if(path.startsWith("file"))
- {
- path=path.substring(5);
- }
- path.replace("/", File.separator);
- return path;
- }
三.空格问题
可以用replaceAll("%20"," "); 来解决部分问题,遇到其它问题可以参考下面的文章http://www.2cto.com/kf/201108/100533.html。我认为当你得项目设为UTF-8的格式应该不会遇到空格问题。
参考文献
1. JAVA中获取路径的各种方式。http://gjt1244.blog.163.com/blog/static/19165205620118724046617/
2. Java获取当前文件路径。http://www.cnblogs.com/lostyue/archive/2011/06/27/2091686.html
3. JAVA彻底解决获取空格路径问题。http://www.2cto.com/kf/201108/100533.html
附录源代码
- package first.second;
- import java.io.BufferedReader;
- import java.io.File;
- import java.io.FileInputStream;
- import java.io.FileNotFoundException;
- import java.io.IOException;
- import java.io.InputStreamReader;
- import java.net.URL;
- public class GetPath {
- public static void getPath()
- {
- //方式一
- System.out.println("方式一");
- System.out.println(System.getProperty("user.dir"));
- //方式二
- System.out.println("方式二");
- File directory = new File("");//设定为当前文件夹
- try{
- System.out.println(directory.getCanonicalPath());//获取标准的路径
- System.out.println(directory.getAbsolutePath());//获取绝对路径
- }catch(Exception e)
- {
- e.printStackTrace();
- }
- //方式三
- System.out.println("方式三");
- System.out.println(GetPath.class.getResource("/"));
- System.out.println(GetPath.class.getResource(""));
- //方式4
- System.out.println("方式四");
- System.out.println(GetPath.class.getClassLoader().getResource(""));
- System.out.println(GetPath.class.getClassLoader().getResource("source.xml"));
- }
- /**
- * @param name 文件名 不包含路径
- */
- public static String getSrcPath(String name)
- {
- String result=null;
- URL urlpath = GetPath.class.getClassLoader().getResource(name);
- String path=urlpath.toString();
- //remove the head "file:",if it exists
- if(path.startsWith("file"))
- {
- path=path.substring(5);
- }
- path.replace("/", File.separator);
- result=path;
- return result;
- }
- // filename 文件名 不包含路径
- // ...args 文件夹名 可以输入多个文件夹名参数
- public static String getParallelPath(String filename,String ...args)
- {
- String pre=System.getProperty("user.dir");
- String path=pre;
- for(String arg:args)
- {
- path+=File.separator+arg;
- }
- path+=File.separator+filename;
- if(path.startsWith("file"))
- {
- path=path.substring(5);
- }
- path.replace("/", File.separator);
- return path;
- }
- public static void readFile(String filepath)
- {
- File file=new File(filepath);
- try {
- InputStreamReader sr=new InputStreamReader(new FileInputStream(file));
- BufferedReader br=new BufferedReader(sr);
- String line=null;
- while((line=br.readLine())!=null)
- {
- System.out.println(line);
- }
- } catch (FileNotFoundException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- } catch (IOException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
- public static String getPackagePath(String filename)
- {
- String result=null;
- URL urlpath=GetPath.class.getResource("");
- String path=urlpath.toString();
- if(path.startsWith("file"))
- {
- path=path.substring(5);
- }
- path.replace("/", File.separator);
- result=path+filename;
- return result;
- }
- //获取WebRoot目录
- public static String getWebRootPath()
- {
- URL urlpath=GetPath.class.getResource("");
- String path=urlpath.toString();
- if(path.startsWith("file"))
- {
- path=path.substring(5);
- }
- if(path.indexOf("WEB-INF")>0)
- {
- path=path.substring(0,path.indexOf("WEB-INF")-1);
- }
- path.replace("/", File.separator);
- return path;
- }
- //webroot WebRoot目录
- //filename 文件名
- //...args 文件名所在文件夹,多个参数输入
- public static String getWebRootFilepath(String webroot,String filename,String ...args)
- {
- String pre=webroot;
- String path=pre;
- for(String arg:args)
- {
- path+=File.separator+arg;
- }
- path+=File.separator+filename;
- if(path.startsWith("file"))
- {
- path=path.substring(5);
- }
- path.replace("/", File.separator);
- return path;
- }
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- // GetPath.getPath();
- // //1 test
- // System.out.println(GetPath.getSrcPath("source.xml"));
- // GetPath.readFile(GetPath.getSrcPath("source.xml"));
- // //2 test
- System.out.println(GetPath.getParallelPath("source.xml", "my file"));
- GetPath.readFile(GetPath.getParallelPath("source.xml", "my file"));
- // //3 test
- System.out.println(GetPath.getPackagePath("source.xml"));
- GetPath.readFile(GetPath.getPackagePath("source.xml"));
- }
- }
相关推荐
此方法返回类的资源路径,通常用于获取与类相关的资源文件,例如`/D:/TEST/WebRoot/WEB-INF/classes/pack/`,这在加载配置文件、模板等静态资源时非常有用。 #### (2) 获取工作目录路径:`System.getProperty("user...
特别是在 Java Web 项目中,获取路径变得更加复杂。下面我们将详细讨论 Java 项目中获取路径的方法和注意事项。 获取相对路径 在 Java 项目中,获取相对路径可以使用 `getResource` 方法。这个方法可以返回当前类...
- 这些方法非常灵活,可以用于获取各种类型的资源文件路径。 通过以上介绍,我们可以看到,在Java开发中,无论是Web开发还是普通的Java应用程序开发,获取路径都是一个非常重要且实用的功能。掌握这些方法,可以...
如果需要获取文件的实际物理路径,可以通过`application.getRealPath(request.getRequestURI())`实现。而获取当前Web应用的根目录实际物理路径,则使用`application.getRealPath("/")`。 #### 3.2 Servlet获取当前...
在Java开发中,获取项目的路径是一个非常常见的需求,尤其是在处理文件读写、资源定位等场景时尤为重要。本文将详细介绍如何通过不同的方法来获取项目的各种路径,并结合示例代码进行说明。 #### System....
开发web工程时经常要获取工程的根目录,自己用Java实现的获取Tomcat下war包部署的Web工程根目录路径的方法,主要利用web工程默认的目录结构,此外也可以指定工程名称获取工程目录的绝对路径
在Java Web开发中,获取WEB-INF目录或者更广泛的WEBROOT(Web应用的根目录)的物理路径是一项常见的需求。这通常涉及到服务器环境变量、Servlet API的使用以及对Web应用部署结构的理解。以下将详细讲解如何在Java中...
自Java 7起,引入了`java.nio.file`包下的`Path`类,其对文件路径的操作更为直观和方便。 ```java // 获取Path对象,指向当前目录下的example.txt文件 Path path = Paths.get("example.txt"); // 获取绝对路径 Path...
Java 文件路径详解是一种在 Java 中获取文件路径的方式。它可以将文件路径转换为 InputStream,以便于读取文件的内容。在 Java 中,有两种方式可以获取文件路径,即使用 Class.getResourceAsStream() 和 ClassLoader...
在Java编程中,获取路径是常见的操作,尤其是在Web应用程序开发中。本文主要介绍Java中获取路径的各种方法,包括绝对路径和相对路径的概念,以及在JSP和Servlet中的具体实现。 首先,理解基本概念: 1. **绝对路径...
如何在java中获取文件的绝对路径,以及在java web开发中得到文件的绝对路径。
下面将详细介绍在 JAVA 文件中获取项目的相对路径的相关知识点。 1. 绝对路径和相对路径的概念 在讨论获取项目的相对路径之前,我们需要了解绝对路径和相对路径的概念。绝对路径是指文件或目录在硬盘上的真正路径...
在Java Web环境中,类似的功能可以通过`ServletContext`的`getRealPath()`方法实现,它接受一个相对于Web应用的虚拟路径,返回服务器上的实际文件路径。 4. **获取项目工程路径**:对于Eclipse这样的IDE,你可能想...
在Java编程中,获取项目文件路径是常见的需求,特别是在处理资源文件、配置文件或进行文件操作时。这里我们将深入探讨几种不同的方法来实现这一目标,同时解析每种方法的适用场景和返回路径的特点。 1. `this....
### JAVA中如何获取文件路径详解 #### 一、概述 在Java编程中,获取文件路径是一项基础而重要的技能。无论是处理本地文件还是部署在Web容器中的应用,了解如何正确地获取文件路径对于程序的正常运行至关重要。本文...
本文将详细介绍如何在Java中获取不同类型的路径,包括Web服务器下的文件路径、本地路径以及相对路径。 #### 一、获取Web服务器下的文件路径 在Java Web开发中,获取Web服务器下的文件路径是非常常见的需求。主要有...
在Java文件中获取路径和WEB应用程序获取路径是非常重要的,因为它们可以帮助开发者更好地理解和操作文件路径。本文将详细介绍基于JAVA文件中获取路径及WEB应用程序获取路径的方法,并提供了多种获取路径的技术。 1....
这里提到的"ajax jsp获取本地文件夹所有的路径"是一个示例,它展示了如何利用AJAX和JSP(JavaServer Pages)来获取并显示本地文件夹中的所有文件路径。这个案例对于实现文件管理器或类似功能非常有用。 首先,让...