liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
package framework.util;
 
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Properties;
 
public class PropFile {
    /**
     * 打开*.properties
     * 
     * @param fileName
     * @return
     */
    public static PropFile open(String fileName){
        return new PropFile(fileName);
    }
    private PropFile(String fileName) {
        this.fileName = fileName;
        File f = new File(this.fileName);
        if(!f.exists()){
            try {
                FileOutputStream fos = new FileOutputStream(f);
                fos.flush();
                fos.close();
            } catch (Exception e) {
            }
            
        }
    }
 
    private String fileName;
    
    /**
     * 读取所有属性
     * 
     * @return
     */
    public Map<String, String> read(){
        Properties p = new Properties();// ���������ļ���ȡ��
        FileInputStream in = null;
        try {
            // propertiesFileName��test.properties
            in = new FileInputStream(fileName);
            p.load(in);
            in.close();// �����˹ر�
            
            Map<String, String> map = new HashMap<String, String>();
            
            Iterator<Object> it = p.keySet().iterator();
            while(it.hasNext()){
                String name = it.next().toString();
                map.put(name, p.getProperty(name, null));
            }
            return map;
        } catch (Throwable e) {
 
        }finally{
            try{
                in.close();
            }catch(Throwable e){
                
            }
        }
        return null;
    }
    /**
     * 读取指定属性
     * 
     * @param propertyName
     * @param defaultValue
     * @return
     */
    public String read(String propertyName, String defaultValue) {
        Properties p = new Properties();// ���������ļ���ȡ��
        FileInputStream in = null;
        try {
            // propertiesFileName��test.properties
            in = new FileInputStream(fileName);
            p.load(in);
            in.close();// �����˹ر�
            
            return p.getProperty(propertyName, defaultValue);
        } catch (Throwable e) {
            e.printStackTrace();
        }finally{
            try{
                in.close();
            }catch(Throwable e){
                
            }
        }
        return defaultValue;
    }
 
    /**
     * 写属性值
     * @param propertyName
     * @param propertyValue
     * @return
     */
    public boolean write(String propertyName, String propertyValue) {
        Properties p = new Properties();
        FileInputStream in = null;
        FileOutputStream out = null;
        
        try{
            in = new FileInputStream(fileName);
            p.load(in);//
            in.close();            
        }catch(Throwable e){
            
        }finally{
            try{
                in.close();
            }catch(Throwable e){
                
            }
        }
        try {
            p.setProperty(propertyName, propertyValue);// ��������ֵ���粻���Բ������½�
            out = new FileOutputStream(fileName);// �����
            p.store(out, "");// ��������ͷ���粻�����ã���Ѻ���һ����""�滻��
            out.flush();// ��ջ��棬д�����
            out.close();// �ر������
            return true;
        } catch (Throwable e) {
 
        }finally{
            try{
                out.close();
            }catch(Throwable e){
                
            }
        }
        return false;
    }
 
}