Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to load .properties file data in android studio project

Tags:

java

android

In my current application i need to maintain one config.properties file and from this properties file i need to get the data in my java file. I have placed the properties file and ConfigUtil.java which is accessing those properties files values are in the same location. But when i am running the application it's giving FileNotFoundException.

I am not able to get why this is not loading the properties file when both are inside the same folder.

My ConfigUtils.java code is :

public class ConfigUtil {

private Properties properties;
InputStream inputStream = null;

public Properties getUrl(){
    properties = new Properties();
    try {
        inputStream = new FileInputStream("config.properties");
        properties.load(inputStream);

    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }finally {
        if(inputStream != null){
            try {
                inputStream.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
    return properties;
}
}

and config.properties file is also in same folder location of config.properties is :

/app/src/main/java/config.properties

location of ConfigUtil.java is :

/app/src/main/java.configutils.java

like image 810
anand Avatar asked Aug 25 '14 10:08

anand


People also ask

How do I use .properties file?

The Properties file can be used in Java to externalize the configuration and to store the key-value pairs. The Properties. load() method of Properties class is convenient to load . properties file in the form of key-value pairs.


1 Answers

Step 1

Create a .properties file in assets folder, if you don’t have assets folder please create one under main

enter image description here

enter image description here

config.properties

name=User Name
age=User Age
ok=Click

Step 2

Create a Util.java file to read the properties file.

Util.java

package javaant.com.propertiesfile;

import android.content.Context;
import android.content.res.AssetManager;

import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;

/**
 * Created by Nirmal Dhara on 12-07-2015.
 */
public class Util {
    public static String getProperty(String key,Context context) throws IOException {
        Properties properties = new Properties();;
        AssetManager assetManager = context.getAssets();
        InputStream inputStream = assetManager.open("config.properties");
        properties.load(inputStream);
        return properties.getProperty(key);

    }
}

Step 3

Use variables in the properties file by calling Util.getProperty(,getApplicationContext()).

MainActivity.java

package javaant.com.propertiesfile;

import android.app.Activity;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.ImageButton;
import android.widget.TextView;

import java.io.IOException;


public class MainActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        // read value from properties file

        TextView txtname= (TextView) findViewById(R.id.txtname);
        TextView txtage= (TextView) findViewById(R.id.txtage);
        Button btnok= (Button) findViewById(R.id.btnok);

        try {
            txtname.setText(Util.getProperty("name",getApplicationContext()));
            txtage.setText(Util.getProperty("age",getApplicationContext()));
            btnok.setText(Util.getProperty("ok",getApplicationContext()));
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

Please download the complete code from here http://javaant.com/how-to-use-properties-file-in-android/#.VwzippN96Hs

like image 135
Nirmal Dhara Avatar answered Oct 02 '22 04:10

Nirmal Dhara