android读取ini文件

Sectionがないの場合

package co.test;

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;

	/**
	 * ファイルのアドレス---->res/raw/**.ini <br>
	 * resourceId--->R.raw.cc
	 * 
	 */
	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存储卡
	 * 
	 */
	public IniReaderNoSection(String filename) {
		File file = new File(filename);
		try {
			properties = new Properties();
			properties.load(new FileInputStream(file));
		} catch (Exception ex) {
			ex.printStackTrace();
		}
	}

	public String getIniKey(String key) {
		if (properties.containsKey(key) == false) {
			return null;
		}
		return String.valueOf(properties.get(key));
	}
}


Sectionがありの場合

package co.test;

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

public class IniReaderHasSection {
	private Map<String, Properties> sections;
	private String secion;
	private Properties properties;

	/**
	 * ファイルのアドレス---->例えば、SD存储卡
	 * 
	 */
	public IniReaderHasSection(String filename) throws IOException {
		sections = new HashMap<String, Properties>();
		BufferedReader reader = new BufferedReader(new FileReader(filename));
		read(reader);
		reader.close();
	}

	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) {
			secion = line.replaceFirst("\\[(.*)\\]", "$1");
			properties = new Properties();
			sections.put(secion, properties);
		} else if (line.matches(".*=.*") == true) {
			if (properties != null) {
				int i = line.indexOf('=');
				String name = line.substring(0, i);
				String value = line.substring(i + 1);
				properties.setProperty(name, value);
			}
		}
	}

	public String getValue(String section, String name) {
		Properties p = sections.get(section);

		if (p == null) {
			return null;
		}

		String value = p.getProperty(name);
		return value;
	}

}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值