Java tutorial
//package com.java2s; //License from project: Apache License import java.io.FileInputStream; import java.util.Properties; import android.content.Context; public class Main { public static Properties loadProperties(Context context, String file, String encode) throws Exception { Properties properties = new Properties(); FileInputStream s = new FileInputStream(file); properties.load(s); return properties; } }