黑马程序员技术交流社区

标题: Properties找不到符号 [打印本页]

作者: 思维    时间: 2014-8-2 14:14
标题: Properties找不到符号
本帖最后由 思维 于 2014-8-2 16:34 编辑

今天写了一个小程序!总是提示Properties prop=new Properties();找不到符号,这是什么原因啊?
  1. import java.io.*;
  2. class PropDemo{
  3.         public static void main(String[] args)throws IOException{
  4.                 BufferedReader        bufr=new BufferedReader(new FileReader("info.txt"));
  5.                 String line=null;
  6.                 Properties prop=new Properties();
  7.                 while((line=bufr.readLine())!=null){
  8.                         String[] arr=line.split("=");
  9.                         prop.setProperty(arr[0],arr[1]);
  10.                 }
  11.                 bufr.close();
  12.                 System.out.println(prop);
  13.         }
  14. }
复制代码

作者: star5603    时间: 2014-8-2 16:21
你为什么不直接用properties的load方法?
作者: 思维    时间: 2014-8-3 09:26
原来如此!




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2