欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

相对路径下的文件读取

程序员文章站 2022-05-14 20:44:10
...
import java.io.File;
import java.net.URL;

public class TestFile {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		URL url = TestFile.class.getClassLoader().getResource("");
		System.out.println(url);
		String path = url.getPath();
		System.out.println(path);
		File file = new File(path+"resources/imgs/logo.gif");
		if(!file.exists()){
			System.out.println("找不到文件 :"+file.getAbsolutePath());
		}else{
			System.out.println("成功找到文件");
			System.out.println("文件名称 : "+file.getName());
			System.out.println("文件路径 :"+file.getPath());
		}
	}

}
 

运行结果:
file:/F:/studyeveryday/myecworks/NoteBook/bin/
/F:/studyeveryday/myecworks/NoteBook/bin/
成功找到文件
文件名称 : logo.gif
文件路径 :F:\studyeveryday\myecworks\NoteBook\bin\resources\imgs\logo.gif

注:
    TestFile.class.getClassLoader().getResource("resources/imgs/logo.gif");
    TestFile.class.getResource("/");

相关标签: Java F# .net