我是想通过类加载器把eclipse包中的相对路径包的配置文件读到 然后打印截图如下:
代码如下:
- package com.itheima.day1;
- import java.io.*;
- import java.lang.reflect.Method;
- import java.util.*;
- public class ReflectPoint2 {
-
- public static void main(String[] args) throws Exception{
- InputStream ips = ReflectPoint2.class.getResourceAsStream("/com/itheima/day1/resource/Pro.properties");
- Properties props = new Properties();
- props.load(ips);
- ips.close();
- String s = props.getProperty("ClassName");
- System.out.println(s);
-
- }
- }
复制代码
配置文件如下:
可是运行还是抛了空指针异常 怎么破?:'(
|