本帖最后由 楚轩 于 2014-5-17 07:14 编辑
import java.util.*;
import java.io.*;
class PropertiesDemo
{
public static void main(String[] args) throws IOException //偷点懒直接抛了
{
method_1();
}
public static void method_1()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("=");
/*若info.txt文件中某行是空行,或者结尾还有空行,bufr.readLine()则不是空,
这样我上面显示角标越界异常,但我看视频上没有发生这个现象,为什么呢?*/
prop.setProperty(arr[0],arr[1]);
}
bufr.close();
System.out.println(prop);
}
|