本帖最后由 思维 于 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);
- }
- }
复制代码 |
|