黑马程序员技术交流社区
标题:
Properties找不到符号
[打印本页]
作者:
思维
时间:
2014-8-2 14:14
标题:
Properties找不到符号
本帖最后由 思维 于 2014-8-2 16:34 编辑
今天写了一个小程序!总是提示Properties prop=new Properties();找不到符号,这是什么原因啊?
import java.io.*;
class PropDemo{
public static void main(String[] args)throws IOException{
BufferedReader bufr=new BufferedReader(new FileReader("info.txt"));
String line=null;
Properties prop=new Properties();
while((line=bufr.readLine())!=null){
String[] arr=line.split("=");
prop.setProperty(arr[0],arr[1]);
}
bufr.close();
System.out.println(prop);
}
}
复制代码
作者:
star5603
时间:
2014-8-2 16:21
你为什么不直接用properties的load方法?
作者:
思维
时间:
2014-8-3 09:26
原来如此!
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2