本帖最后由 唐辉辉 于 2012-6-4 16:26 编辑
看毕老师的视频,发现在点问题。求解!!
public static void loadDemo()throws IOException
{
Properties prop = new Properties();
FileInputStream fis = new FileInputStream("info.txt"); //不是说读取文本文件用FileReader吗,为什么这里要采用FileInputStream
//将流中的数据加载进集合。
prop.load(fis);
prop.setProperty("wangwu","39");
FileOutputStream fos = new FileOutputStream("info.txt"); //不是说读取文本文件用FileWirter吗,为什么这里要采用FileOutputStream
prop.store(fos,"haha");
// System.out.println(prop);
prop.list(System.out);
fos.close();
fis.close();
}
|
|