讀取以key=value形式存儲的txt文件

代碼片斷(假設只有3個key=value):spa

public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(
                new InputStreamReader(
                        new FileInputStream("C:\\Users\\Administrator\\Desktop\\test.txt"),"GBK"));
        String str = "";
        Map<String,String> map = new LinkedHashMap<String,String>();
        String value = null,key = null;
        int i = 0;
        while((str=br.readLine())!=null) {
            System.out.println(str);
            if(str.contains("=")) {
                i++;
                if(null != value && null != key) {
                    map.put(key,value);
                }
                key = str.substring(0,str.indexOf("="));
                value = str.substring(str.indexOf("=")+1,str.length());
                if(i == 3) {
                    map.put(key,value);
                } else {
                    continue;
                }
            } 
            value += str;
        }
        System.out.println(map);
    }

輸出結果:code

a.b=c
yes=jsh健康四年的空間能看見能看到今年的空間能健康的上vdk
空間的時刻
空間的四年看電視vjnk
扣籃大賽女款東京
nj=klm
{a.b=c, yes=jsh健康四年的空間能看見能看到今年的空間能健康的上vdk空間的時刻空間的四年看電視vjnk扣籃大賽女款東京, nj=klm}blog

PS:若是修改某個key-value值,必定要遍歷重寫txt文件嗎。。。string

相關文章
相關標籤/搜索