import java.util.*;
import java.io.*;
public class test{
private String findPath()
{
String path = getClass().getClassLoader().getResource("").getPath();
int pathLength = path.length();
path = path.substring(1, pathLength);
path = path + "my.properties";
return path;
}
public static void main(String args[]) throws Exception{
Properties pr = new Properties();
test t = new test();
String path=t.findPath();
System.out.println("aaaaa"+path);
FileInputStream fis = new FileInputStream("my.properties");
pr.load(fis);
pr.list(System.out);
}
}
983

被折叠的 条评论
为什么被折叠?



