package com.ygh.blog.realpath;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.util.Properties;
/**
* 获取java下面的路径的演示
*/
import org.junit.Test;
public class RealPathTest {
/**
* 获取当前类所在的工程路径
*/
@Test
public void fun1() {
File file = new File(this.getClass().getResource("/").getPath());
// D:\project\taotaoshop\src\blog-mybatis1\target\test-classes
System.out.println(file);
}
/**
* 获取当前类的绝对路径
*/
@Test
public void fun2() {
File file = new File(this.getClass().getResource("").getPath());
// D:\project\taotaoshop\src\blog-mybatis1\target\test-classes\com\ygh\blog\realpath
System.out.println(file);
}
/**
* 获取当前类所在的工程路径,两种方法皆可
*
* @throws IOException
*/
@Test
public void fun3() throws IOException {
File file = new File("");
String path = file.getCanonicalPath();
// D:\project\taotaoshop\src\blog-mybatis1
System.out.println(path);
// D:\project\taotaoshop\src\blog-mybatis1
System.out.println(System.getProperty("user.dir"));
}
/**
* 获取当前src下面的文件的路径
*/
@Test
public void fun4() {
URL url = this.getClass().getClassLoader().getResource("jdbc.properties");
System.out.println(url);
}
/**
* 获取其他源码包下面的文件路径
*/
@Test
public void fun5() {
// 使用这种方法可以获取路径
URL url = this.getClass().getClassLoader().getResource("test2.txt");
// file:/D:/project/taotaoshop/src/blog-mybatis1/target/classes/test.txt
System.out.println(url);
}
@Test
public void fun6() throws Exception {
URL url = this.getClass().getClassLoader().getResource("test2.txt");
System.out.println(url.getPath());
Properties properties = new Properties();
// 使用这种方式可以获取文件对应的输出流
InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream("jdbc.properties");
properties.load(inputStream);
File file = new File(url.getPath());
System.out.println(properties.get("jdbc.driverClassName"));
}
}下面赋上代码对应的文件路径


”扩展PHP“说起来容易做起来难。PHP已经进化成一个日趋成熟的源码包几十兆大小的工具。要骇客如此复杂的一个系统,不得不学习和思考。构建本章内容时,我们最终选择了“在实战中学习”的方式。这不是最科学也不是最专业的方式,但是此方式最有趣,也得出了最好的最终结果。下面的部分,你将先快速的学习到,如何获得最基本的扩展,且这些扩展立即就可运行。然后你将学习到 Zend 的高级 API 功能,这种方式将不得
392
java怎么学习?java怎么入门?java在哪学?java怎么学才快?不用担心,这里为大家提供了java速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号