黑马程序员技术交流社区
标题:
关于Properties类的操作..请问下大家. 在毕老师视频里面的第20天14集的
[打印本页]
作者:
邓伟
时间:
2013-11-29 01:01
标题:
关于Properties类的操作..请问下大家. 在毕老师视频里面的第20天14集的
import java.util.*;
import java.io.*;
class RunCount
{
public static void main(String[] args)
{
Properties prop = new Properties();
File file = new File("count.ini");
if(!file.exists())
{
try
{
file.createNewFile();
System.out.println("haha");
}
catch (IOException e)
{
throw new RuntimeException(e.toString()+"yichang");
}
}
FileInputStream fis = null;
FileOutputStream fos = null;
try
{
fis = new FileInputStream(file);
fos = new FileOutputStream(file); //为什么我在这里new 一个FileOutput类. 就无法使文件持久化..
// fos.write("temp=0".getBytes());
//fos.newLine();
// fos.flush();
//System.out.println(fis.toString());
System.out.println(file.length());
prop.load(fis);
int count = 0;
System.out.println(prop);
String value = prop.getProperty("temp");
/*if(value == null)
{
System.out.println(value);
fos.write("temp=0".getBytes());
}
else*/
if(value != null)
count = Integer.valueOf(value);
count++;
// System.out.println(prop);
prop.setProperty("temp",count+"");
// fos = new FileOutputStream(file); // 但我如果在这里new的话.文件能一直保持...
prop.store(fos,"");
prop.list(System.out);
}
catch (IOException e)
{
throw new RuntimeException(e.toString()+"文件不存在");
}
finally
{
if(fis != null)
{
try
{
fis.close();
}
catch (IOException e)
{
throw new RuntimeException(e.toString()+"haha");
}
}
if(fos != null)
{
try
{
fos.close();
}
catch (IOException e)
{
throw new RuntimeException(e.toString()+"Hhasdas");
}
}
}
}
}
复制代码
想问的问题是,这两个地方所new的FileOutputStream 对Properties有什么影响,?
文字表达不好..麻烦各位有时间看看.
作者:
FFF
时间:
2013-12-2 00:16
同学、问题已经解决了吗?
如果没有、就去新版28期问吧,26~27已经结束了。开班了!
http://bbs.itheima.com/forum-165-1.html
如果问题已经解决,请及时修改主题为“提问结束”。
修改主题的方法链接
http://bbs.itheima.com/thread-89313-1-1.html
如果没有解决,可能你的问题问得不够清楚。可以重新发问的哦~
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2