• java笔记----property文件读写


    package com.test.property;
    
    import java.io.BufferedInputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.Properties;
    
    /**
    * @author 
    * @version 创建时间:2019年3月26日 上午8:40:17
    * 类说明
    */
    public class PropertyTest {
        static Properties prop = new Properties();
        static String strPath=PropertyTest.class.getClassLoader().getResource("./").getPath()+"/a.properties";
        static HashMap<String, String> map = new HashMap<String, String>();
        public static void main(String[] args) throws IOException {
            // TODO Auto-generated method stub
              
              File file = new File(strPath);  
              String[] path =strPath.split("/");
              String filename =path[path.length-1];
              String dpath =strPath.replace("/"+filename, "");
               System.out.println("文件路径"+dpath);
               System.out.println("文件名"+filename);
                if(!new File(dpath).exists()){
                    new File(dpath).mkdirs();
                    System.out.println("创建目录成功:"+dpath);
                if(!file.exists()){
                        file.createNewFile();
                        System.out.println("创建文件成功:"+file);
                    }
                }else{
                    if(!file.exists()){
                        file.createNewFile();
                        System.out.println("创建文件成功2:"+file);
                    }
                }
                
                //读取属性文件a.properties
                InputStream in = new BufferedInputStream (new FileInputStream(strPath));
                prop.load(in);     ///加载属性列表
                Iterator<String> it=prop.stringPropertyNames().iterator();
                while(it.hasNext()){
                    String key=it.next();
                    map.put(key,prop.getProperty(key));
                    System.out.println(key+":"+prop.getProperty(key));
                }
                in.close();
                addProp("3","455");
                
        }
       
        private static boolean addProp(String key,String value){//添加key不是相同的property
            //
            if(map.containsKey(key)){  //里面含有该key不写进去
                return false;
            }else{
            try {
                FileOutputStream oFile = new FileOutputStream(strPath, false);
                prop.setProperty(key, value);
                prop.store(oFile, null);//null就是不要注释
                oFile.close();
                return true;
            } catch (Exception e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }//true表示追加打开
            return false;
          }
        }
    }

     

  • 相关阅读:
    交互设计实用指南系列(10)—别让我思考
    交互设计实用指南系列11-减少记忆负担
    交互设计实用指南系列(12)—避免出错
    复杂产品的响应式设计【流程篇】
    JS/jQuery判断DOM节点是否存在
    jquery.validate手册 (5)
    jquery.validate手册 (4)
    jquery.validate手册 (3)
    jquery.validate手册 (2)
    Java零基础学习(二)自定义类型及基本语法
  • 原文地址:https://www.cnblogs.com/tk55/p/10598198.html
Copyright © 2020-2023  润新知