java获取指定资源文件路径的几种方法

你好,提问者:

指定资源路径的方法有两种:

一种是绝对路径,一种是相对路径。

获取当前类的所在工程路径; 

File f = new File(this.getClass().getResource("/").getPath()); 

System.out.println(f); 

获取当前类的绝对路径; 

File f = new File(this.getClass().getResource("").getPath()); 

System.out.println(f); 

获取当前类的所在工程路径; 

File directory = new File("");//参数为空 

String courseFile = directory.getCanonicalPath() ; 

System.out.println(courseFile); 

获取当前工程src目录下selected.txt文件的路径:

URL xmlpath = this.getClass().getClassLoader().getResource("selected.txt"); 

System.out.println(xmlpath);

java 怎么获取某文件的目录

File dir=file.getParentFile();返回父目录

String dir=file.getParent();返回父目录的路径

JAVA中如何得到文件路径

java文件中获得路径

Thread.currentThread().getContextClassLoader().getResource("") //获得资源文件(.class文件)所在路径

ClassLoader.getSystemResource("")

Class_Name.class.getClassLoader().getResource("")

Class_Name.class .getResource("/")

Class_Name.class .getResource("") // 获得当前类所在路径

System.getProperty("user.dir") // 获得项目根目录的绝对路径

System.getProperty("java.class.path") //得到类路径和包路径

打印输出依次如下:

file:/F:/work_litao/uri_test/WebContent/WEB-INF/classes/

file:/F:/work_litao/uri_test/WebContent/WEB-INF/classes/

file:/F:/work_litao/uri_test/WebContent/WEB-INF/classes/

file:/F:/work_litao/uri_test/WebContent/WEB-INF/classes/

file:/F:/work_litao/uri_test/WebContent/WEB-INF/classes/com/xml/imp/

F:\work_litao\uri_test

F:\work_litao\uri_test\WebContent\WEB-INF\classes;F:\work_litao\uri_test\WebContent\WEB-INF\lib\dom4j.jar

java如何取得文件夹下所有的子目录

package edu.chinasoft.wtf;

import java.io.File;

/**

* @author :wtf

* @version 创建时间:2018年3月5日 上午9:59:05

* 类说明:该类可以输出指定路径下所有的文件名(文件名和文件夹名)

* 指定一个路径即可

*/

public class printURL {

public static void main(String[] args) { 

//这是需要获取的文件夹路径 这里填写你的文件路径 注意  / 与 \

String path = "E:/";   

getFile(path,0); 

/*

* 函数名:getFile

* 作用:使用递归,输出指定文件夹内的所有文件

* 参数:path:文件夹路径   deep:表示文件的层次深度,控制前置空格的个数

* 前置空格缩进,显示文件层次结构

*/

private static void getFile(String path,int deep){ 

// 获得指定文件对象

File file = new File(path); 

// 获得该文件夹内的所有文件 

File[] array = file.listFiles(); 

for(int i=0;iarray.length;i++)

if(array[i].isFile())//如果是文件

for (int j = 0; j deep; j++)//输出前置空格

System.out.print(" ");

// 只输出文件名字

System.out.println( array[i].getName()); 

// 输出当前文件的完整路径 

// System.out.println("#####" + array[i]); 

// 同样输出当前文件的完整路径   大家可以去掉注释 测试一下 

// System.out.println(array[i].getPath()); 

}

else if(array[i].isDirectory())//如果是文件夹

{

for (int j = 0; j deep; j++)//输出前置空格

System.out.print(" ");

System.out.println( array[i].getName());

//System.out.println(array[i].getPath());

//文件夹需要调用递归 ,深度+1

getFile(array[i].getPath(),deep+1);

}

java获取文件的目录的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于java获取当前目录下的文件、java获取文件的目录的信息别忘了在本站进行查找喔。

转自:http://www.easyaq.com/post/10807.html