各位前輩,我在最近在學到Properties對象的時候遇到一個怪問題
public void test11(){
ServletContext sc=this.getServletContext();
String path=sc.getRealPath("/WEB-INF/classes/p2.properties");
Properties p=new Properties();
p.load(new FileReader(path));
}
這裡我想用Properties對象加載一個properties文件,但是它提示我Properties對象裡面load函數沒有定義,我實在不知道怎麼回事,不知道有沒有大神幫下我解決這個問題
有沒有引用錯包?
這個看看http://my.oschina.net/zh119893/blog/274003