A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© ζ_____________ 中级黑马   /  2014-9-28 23:48  /  1060 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

不多说,直接上代码.
class PropertiesDemo
{
        public static void main(String[] args)
        {
                loadDemo();
        }
        public static void loadDemo()
        {
                Properties prop = new Properties();
                FileInputStream fis = null;
                FileOutputStream fos = null;
                try
                {
                        fis = new FileInputStream("info.txt");
                       
                        prop.load(fis);                                                        //将info.txt的内容读取到内存中.

                        prop.setProperty("front","other");


       //所以不可以把这一行放在load方法之前,否则后果就是, 只有之后setProperty()里存放的键值了...
                        fos = new FileOutputStream("info.txt");        //创建(覆盖)一个新的info.txt(因为输出流就是这么霸道).


                        prop.store(fos,"biaozhu");

                }
                catch (IOException e)
                {
                        System.out.println(e.toString());
                }
                finally
                {
                        try
                        {
                                if (fis != null)
                                {
                                        fis.close();
                                }
                        }
                        catch (IOException e)
                        {
                                System.out.println(e.toString());
                        }
                        finally
                        {
                                try
                                {
                                        if (fos != null)
                                        {
                                                fos.close();
                                        }
                                }
                                catch (IOException e)
                                {
                                        System.out.println(e.toString());
                                }
                        }
                }
        }

1 个回复

倒序浏览
细节决定一切, 多谢。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马