1. 程式人生 > >Android下對.ini檔案的解析

Android下對.ini檔案的解析

.ini檔案時一堆鍵值對的檔案

沒有section的解析程式碼

package com.cj.td.common.util.ini;

import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.util.Properties;

import android.content.Context;

public class IniReaderNoSection {
	public Properties properties = null;
	/**
	 * 讀取asset檔案
	 * @param context
	 * @param iniPath
	 */
	public IniReaderNoSection(Context context,String iniPath){
		try{
			InputStream inputStream = context.getResources().getAssets().open(iniPath);
			properties = new Properties();
			properties.load(inputStream);
		}catch(Exception ex){
			ex.printStackTrace();
		}
		
	}
	/***
	 * 讀取raw檔案下的ini檔案
	 * @param context
	 * @param resourceId
	 */
	public IniReaderNoSection(Context context, int resourceId) {
		InputStream inputStream = context.getResources().openRawResource(
				resourceId);
		try {
			properties = new Properties();
			properties.load(inputStream);
		} catch (Exception ex) {
			ex.printStackTrace();
		}
	}
	/**
	 * 讀取sd卡檔案
	 * @param filename
	 */
	public IniReaderNoSection(String filename) {
		File file = new File(filename);
		try {
			properties = new Properties();
			properties.load(new FileInputStream(file));
		} catch (Exception ex) {
			ex.printStackTrace();
		}
	}
	/**
	 * 獲取某個key的值
	 * @param key
	 * @return
	 */
	public String getIniKey(String key){
		if(!properties.contains(key)){
			return null;
		}
		return String.valueOf(properties.get(key));
	}
}

有section的檔案的解析
package com.cj.td.common.util.ini;

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.util.HashMap;
import java.util.Map;
import java.util.Properties;

import org.loon.framework.android.game.utils.StringUtils;

import android.content.Context;

public class IniReaderHasSection {
	private Map<String,Properties> sections;
	
	private String section;
	
	private Properties properties;
	
	public IniReaderHasSection(String fileName) throws IOException{
		sections = new HashMap<String, Properties>();
		BufferedReader reader = new BufferedReader(new FileReader(fileName));
		read(reader);
		reader.close();
	}
	
	/**
	 * 讀取asset檔案
	 * @param context
	 * @param iniPath
	 */
	public IniReaderHasSection(Context context,String iniPath){
		try{
			sections = new HashMap<String, Properties>();
			InputStream inputStream = context.getResources().getAssets().open(iniPath);
			BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream));
			read(reader);
			reader.close();
		}catch(Exception ex){
			ex.printStackTrace();
		}
		
	}
	private void read(BufferedReader reader)  throws IOException{
		String line;
		while((line = reader.readLine())!=null){
			parseLine(line);
		}
	}

	private void parseLine(String line) {
		line = line.trim();
		if(line.matches("\\[.*\\]")==true){
			section = line.replaceFirst("\\[(.*)\\]", "$1");
			properties = new Properties();
			sections.put(section, properties);
		}else{
			if(properties!=null
					&&!line.startsWith(";")
					&&!StringUtils.isEmpty(line)){
				int i = line.indexOf('=');
				String name = line.substring(0,i-1).trim();
				String value = line.substring(i+1).trim();
				properties.setProperty(name, value);
			}
		}
	}
	
	public String getValue(String section,String name){
		Properties p = sections.get(section);
		
		if(p == null)return null;
		
		return p.getProperty(name);
	}
}